2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-30 22:25:12 +00:00

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) {

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