mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-09-04 08:25:38 +00:00
Update tg_owt to WebRTC M101.
This commit is contained in:
@@ -37,6 +37,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||||||
namespace tgcalls {
|
namespace tgcalls {
|
||||||
class InstanceImpl;
|
class InstanceImpl;
|
||||||
class InstanceV2Impl;
|
class InstanceV2Impl;
|
||||||
|
class InstanceV2ReferenceImpl;
|
||||||
class InstanceV2_4_0_0Impl;
|
class InstanceV2_4_0_0Impl;
|
||||||
class InstanceImplLegacy;
|
class InstanceImplLegacy;
|
||||||
void SetLegacyGlobalServerConfig(const std::string &serverConfig);
|
void SetLegacyGlobalServerConfig(const std::string &serverConfig);
|
||||||
@@ -53,6 +54,7 @@ const auto kDefaultVersion = "2.4.4"_q;
|
|||||||
|
|
||||||
const auto Register = tgcalls::Register<tgcalls::InstanceImpl>();
|
const auto Register = tgcalls::Register<tgcalls::InstanceImpl>();
|
||||||
const auto RegisterV2 = tgcalls::Register<tgcalls::InstanceV2Impl>();
|
const auto RegisterV2 = tgcalls::Register<tgcalls::InstanceV2Impl>();
|
||||||
|
const auto RegV2Ref = tgcalls::Register<tgcalls::InstanceV2ReferenceImpl>();
|
||||||
const auto RegisterV240 = tgcalls::Register<tgcalls::InstanceV2_4_0_0Impl>();
|
const auto RegisterV240 = tgcalls::Register<tgcalls::InstanceV2_4_0_0Impl>();
|
||||||
const auto RegisterLegacy = tgcalls::Register<tgcalls::InstanceImplLegacy>();
|
const auto RegisterLegacy = tgcalls::Register<tgcalls::InstanceImplLegacy>();
|
||||||
|
|
||||||
|
2
Telegram/ThirdParty/libtgvoip
vendored
2
Telegram/ThirdParty/libtgvoip
vendored
Submodule Telegram/ThirdParty/libtgvoip updated: a090c6a8f7...78a8e22bed
2
Telegram/ThirdParty/tgcalls
vendored
2
Telegram/ThirdParty/tgcalls
vendored
Submodule Telegram/ThirdParty/tgcalls updated: 9a6e515fbb...26253546aa
@@ -1243,9 +1243,9 @@ mac:
|
|||||||
stage('tg_owt', """
|
stage('tg_owt', """
|
||||||
git clone https://github.com/desktop-app/tg_owt.git
|
git clone https://github.com/desktop-app/tg_owt.git
|
||||||
cd tg_owt
|
cd tg_owt
|
||||||
git checkout 1fe5e68d99
|
git checkout bab760d7bd
|
||||||
git submodule init
|
git submodule init
|
||||||
git submodule update src/third_party/libyuv
|
git submodule update src/third_party/libyuv src/third_party/crc32c/src
|
||||||
win:
|
win:
|
||||||
SET MOZJPEG_PATH=$LIBS_DIR/mozjpeg
|
SET MOZJPEG_PATH=$LIBS_DIR/mozjpeg
|
||||||
SET OPUS_PATH=$USED_PREFIX/include/opus
|
SET OPUS_PATH=$USED_PREFIX/include/opus
|
||||||
|
@@ -30,6 +30,8 @@ PRIVATE
|
|||||||
EncryptedConnection.h
|
EncryptedConnection.h
|
||||||
FakeAudioDeviceModule.cpp
|
FakeAudioDeviceModule.cpp
|
||||||
FakeAudioDeviceModule.h
|
FakeAudioDeviceModule.h
|
||||||
|
FieldTrialsConfig.cpp
|
||||||
|
FieldTrialsConfig.h
|
||||||
InstanceImpl.cpp
|
InstanceImpl.cpp
|
||||||
InstanceImpl.h
|
InstanceImpl.h
|
||||||
LogSinkImpl.cpp
|
LogSinkImpl.cpp
|
||||||
@@ -55,18 +57,31 @@ PRIVATE
|
|||||||
VideoCaptureInterfaceImpl.h
|
VideoCaptureInterfaceImpl.h
|
||||||
VideoCapturerInterface.h
|
VideoCapturerInterface.h
|
||||||
|
|
||||||
|
utils/gzip.cpp
|
||||||
|
utils/gzip.h
|
||||||
|
|
||||||
v2/ContentNegotiation.cpp
|
v2/ContentNegotiation.cpp
|
||||||
v2/ContentNegotiation.h
|
v2/ContentNegotiation.h
|
||||||
# v2/InstanceV2ReferenceImpl.cpp
|
v2/ExternalSignalingConnection.cpp
|
||||||
# v2/InstanceV2ReferenceImpl.h
|
v2/ExternalSignalingConnection.h
|
||||||
|
v2/InstanceV2ReferenceImpl.cpp
|
||||||
|
v2/InstanceV2ReferenceImpl.h
|
||||||
v2/InstanceV2Impl.cpp
|
v2/InstanceV2Impl.cpp
|
||||||
v2/InstanceV2Impl.h
|
v2/InstanceV2Impl.h
|
||||||
v2/NativeNetworkingImpl.cpp
|
v2/NativeNetworkingImpl.cpp
|
||||||
v2/NativeNetworkingImpl.h
|
v2/NativeNetworkingImpl.h
|
||||||
|
v2/ReflectorPort.cpp
|
||||||
|
v2/ReflectorPort.h
|
||||||
|
v2/ReflectorRelayPortFactory.cpp
|
||||||
|
v2/ReflectorRelayPortFactory.h
|
||||||
v2/Signaling.cpp
|
v2/Signaling.cpp
|
||||||
v2/Signaling.h
|
v2/Signaling.h
|
||||||
|
v2/SignalingConnection.cpp
|
||||||
|
v2/SignalingConnection.h
|
||||||
v2/SignalingEncryption.cpp
|
v2/SignalingEncryption.cpp
|
||||||
v2/SignalingEncryption.h
|
v2/SignalingEncryption.h
|
||||||
|
v2/SignalingSctpConnection.cpp
|
||||||
|
v2/SignalingSctpConnection.h
|
||||||
v2_4_0_0/InstanceV2_4_0_0Impl.cpp
|
v2_4_0_0/InstanceV2_4_0_0Impl.cpp
|
||||||
v2_4_0_0/InstanceV2_4_0_0Impl.h
|
v2_4_0_0/InstanceV2_4_0_0Impl.h
|
||||||
v2_4_0_0/Signaling_4_0_0.cpp
|
v2_4_0_0/Signaling_4_0_0.cpp
|
||||||
@@ -185,6 +200,7 @@ PRIVATE
|
|||||||
desktop-app::external_ffmpeg
|
desktop-app::external_ffmpeg
|
||||||
desktop-app::external_openssl
|
desktop-app::external_openssl
|
||||||
desktop-app::external_rnnoise
|
desktop-app::external_rnnoise
|
||||||
|
desktop-app::external_zlib
|
||||||
)
|
)
|
||||||
|
|
||||||
target_compile_definitions(lib_tgcalls
|
target_compile_definitions(lib_tgcalls
|
||||||
|
Submodule Telegram/lib_webrtc updated: b2e6841058...836fdb0506
2
cmake
2
cmake
Submodule cmake updated: 26d31dbdef...b4fff01757
Reference in New Issue
Block a user