Fixed the auto keyframe interval
This commit is contained in:
parent
8be83fc51d
commit
f2c5b5d750
@ -1 +1 @@
|
||||
Subproject commit 366ba5ba42e7503afcb2e81b367209c9e4f5c5d7
|
||||
Subproject commit 499bd8dde6bf8e0f0bdff4dc3ecd589f614a1a1e
|
@ -859,7 +859,7 @@ command_result SpeakingClient::handleCommandRtcBroadcast(Command &command) {
|
||||
case 2: {
|
||||
ts::Command cmd{""};
|
||||
cmd["broadcast_bitrate_max"] = 1500000;
|
||||
cmd["broadcast_keyframe_interval"] = 7;
|
||||
cmd["broadcast_keyframe_interval"] = 0;
|
||||
cmd["ssrc"] = ssrc;
|
||||
cmd["type"] = (uint8_t) rtc::VideoBroadcastType::Camera;
|
||||
result.insert_result(this->handleCommandBroadcastVideo(cmd));
|
||||
@ -868,7 +868,7 @@ command_result SpeakingClient::handleCommandRtcBroadcast(Command &command) {
|
||||
case 3: {
|
||||
ts::Command cmd{""};
|
||||
cmd["broadcast_bitrate_max"] = 1500000;
|
||||
cmd["broadcast_keyframe_interval"] = 7;
|
||||
cmd["broadcast_keyframe_interval"] = 0;
|
||||
cmd["ssrc"] = ssrc;
|
||||
cmd["type"] = (uint8_t) rtc::VideoBroadcastType::Screen;
|
||||
result.insert_result(this->handleCommandBroadcastVideo(cmd));
|
||||
|
Loading…
Reference in New Issue
Block a user