Update tgcalls with streams support.

This commit is contained in:
John Preston 2022-02-25 11:17:23 +03:00
parent e6294f48de
commit 45398bb54e
3 changed files with 7 additions and 3 deletions

View file

@ -3004,7 +3004,7 @@ void GroupCall::setInstanceMode(InstanceMode mode) {
case InstanceMode::Stream: return Mode::GroupConnectionModeBroadcast;
}
Unexpected("Mode in GroupCall::setInstanceMode.");
}(), true);
}(), true, false); // #TODO streams
}
void GroupCall::setScreenInstanceMode(InstanceMode mode) {
@ -3020,7 +3020,7 @@ void GroupCall::setScreenInstanceMode(InstanceMode mode) {
case InstanceMode::Stream: return Mode::GroupConnectionModeBroadcast;
}
Unexpected("Mode in GroupCall::setInstanceMode.");
}(), true);
}(), true, false);
}
void GroupCall::maybeSendMutedUpdate(MuteState previous) {

@ -1 +1 @@
Subproject commit 6d619124c5c00a46b38d26eb596653f0d13643da
Subproject commit c26326ab915e38b626c5a6febee37df9eb5edafa

View file

@ -73,8 +73,12 @@ PRIVATE
desktop_capturer/DesktopCaptureSourceManager.cpp
# Group calls
group/AVIOContextImpl.cpp
group/AVIOContextImpl.h
group/AudioStreamingPart.cpp
group/AudioStreamingPart.h
group/AudioStreamingPartInternal.cpp
group/AudioStreamingPartInternal.h
group/GroupInstanceCustomImpl.cpp
group/GroupInstanceCustomImpl.h
group/GroupInstanceImpl.h