diff --git a/Example/SellyCloudSDK/Controllers/Home/AVCallViewController.m b/Example/SellyCloudSDK/Controllers/Home/AVCallViewController.m index 8dcb0d3..88c667e 100644 --- a/Example/SellyCloudSDK/Controllers/Home/AVCallViewController.m +++ b/Example/SellyCloudSDK/Controllers/Home/AVCallViewController.m @@ -25,12 +25,8 @@ [self setupUI]; - // 加载上次使用的频道ID(优先使用单聊的,如果没有则使用会议的) - NSString *lastChannelId = [[AVConfigManager sharedManager] loadCallChannelId]; - if (lastChannelId.length == 0) { - lastChannelId = [[AVConfigManager sharedManager] loadConferenceChannelId]; - } - self.channelIdTextField.text = lastChannelId; + // 加载上次使用的频道ID + self.channelIdTextField.text = [[AVConfigManager sharedManager] loadCallChannelId]; } - (void)setupUI { @@ -173,7 +169,7 @@ } // 保存频道 ID - [[AVConfigManager sharedManager] saveConferenceChannelId:channelId]; + [[AVConfigManager sharedManager] saveCallChannelId:channelId]; // 创建并跳转到视频会议页面 SellyVideoCallConferenceController *vc = [[SellyVideoCallConferenceController alloc] init]; diff --git a/Example/SellyCloudSDK/Play/SCLiveVideoPlayerViewController.m b/Example/SellyCloudSDK/Play/SCLiveVideoPlayerViewController.m index 57fa2eb..f2b0723 100644 --- a/Example/SellyCloudSDK/Play/SCLiveVideoPlayerViewController.m +++ b/Example/SellyCloudSDK/Play/SCLiveVideoPlayerViewController.m @@ -714,18 +714,7 @@ } - (void)player:(SellyLiveVideoPlayer *)player onDebugInfo:(SellyLivePlayerStats *)stats { - NSLog(@"统计信息: 协议=%@, CPU=%ld%%/%ld%%, FPS=%ld, 码率=%ldkbps/%ldkbps, RTT=%ldms ,freezeTime=%ldms, 分辨率=%@, 丢包率=%.2f%% timestampMs=%lld", - stats.protocol, - stats.appCpu, - stats.systemCpu, - stats.fps, - stats.videoBitrate, - stats.audioBitrate, - stats.rtt, - stats.freezeTime, - NSStringFromCGSize(stats.videoSize), - stats.packetLossRate, - stats.timestampMs); + } #pragma mark - Screenshot diff --git a/Example/SubModules/SellyCloudSDK/SellyCloudSDK/sdk/SellyCloudSDK.framework/Modules/SellyCloudSDK.swiftmodule/arm64-apple-ios.swiftmodule b/Example/SubModules/SellyCloudSDK/SellyCloudSDK/sdk/SellyCloudSDK.framework/Modules/SellyCloudSDK.swiftmodule/arm64-apple-ios.swiftmodule index 1d49c87..5e495f1 100644 Binary files a/Example/SubModules/SellyCloudSDK/SellyCloudSDK/sdk/SellyCloudSDK.framework/Modules/SellyCloudSDK.swiftmodule/arm64-apple-ios.swiftmodule and b/Example/SubModules/SellyCloudSDK/SellyCloudSDK/sdk/SellyCloudSDK.framework/Modules/SellyCloudSDK.swiftmodule/arm64-apple-ios.swiftmodule differ diff --git a/Example/SubModules/SellyCloudSDK/SellyCloudSDK/sdk/SellyCloudSDK.framework/SellyCloudSDK b/Example/SubModules/SellyCloudSDK/SellyCloudSDK/sdk/SellyCloudSDK.framework/SellyCloudSDK index 20b3a88..e87ea3a 100755 Binary files a/Example/SubModules/SellyCloudSDK/SellyCloudSDK/sdk/SellyCloudSDK.framework/SellyCloudSDK and b/Example/SubModules/SellyCloudSDK/SellyCloudSDK/sdk/SellyCloudSDK.framework/SellyCloudSDK differ