fix
This commit is contained in:
parent
18ea900c12
commit
14431c1570
Binary file not shown.
|
|
@ -134,8 +134,8 @@
|
||||||
- (IBAction)startP2p:(id)sender {
|
- (IBAction)startP2p:(id)sender {
|
||||||
SellyRTCVideoConfiguration *config = SellyRTCVideoConfiguration.defaultConfig;
|
SellyRTCVideoConfiguration *config = SellyRTCVideoConfiguration.defaultConfig;
|
||||||
config.frameRate = [self.fpsTf.text integerValue];
|
config.frameRate = [self.fpsTf.text integerValue];
|
||||||
config.maxBitrate = [self.maxBitrateTf.text integerValue];
|
config.maxBitrate = [self.maxBitrateTf.text integerValue]*1000;
|
||||||
config.minBitrate = [self.minBitrateTf.text integerValue];
|
config.minBitrate = [self.minBitrateTf.text integerValue]*1000;
|
||||||
|
|
||||||
SellyVideoCallViewController *vc = SellyVideoCallViewController.new;
|
SellyVideoCallViewController *vc = SellyVideoCallViewController.new;
|
||||||
vc.channelId = self.p2pChannelTf.text;
|
vc.channelId = self.p2pChannelTf.text;
|
||||||
|
|
@ -146,8 +146,8 @@
|
||||||
- (IBAction)startConference:(id)sender {
|
- (IBAction)startConference:(id)sender {
|
||||||
SellyRTCVideoConfiguration *config = SellyRTCVideoConfiguration.defaultConfig;
|
SellyRTCVideoConfiguration *config = SellyRTCVideoConfiguration.defaultConfig;
|
||||||
config.frameRate = [self.fpsTf.text integerValue];
|
config.frameRate = [self.fpsTf.text integerValue];
|
||||||
config.maxBitrate = [self.maxBitrateTf.text integerValue];
|
config.maxBitrate = [self.maxBitrateTf.text integerValue]*1000;
|
||||||
config.minBitrate = [self.minBitrateTf.text integerValue];
|
config.minBitrate = [self.minBitrateTf.text integerValue]*1000;
|
||||||
|
|
||||||
SellyVideoCallConferenceController *vc = SellyVideoCallConferenceController.new;
|
SellyVideoCallConferenceController *vc = SellyVideoCallConferenceController.new;
|
||||||
vc.channelId = self.conferenceChannelTf.text;
|
vc.channelId = self.conferenceChannelTf.text;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue