Skip to content

Commit 59069e0

Browse files
authored
feat: upgrade to m137_release. (#113)
* feat: upgrade to m137_release. * fix. * fix. * update patch. * update.
1 parent 237eb3f commit 59069e0

File tree

78 files changed

+819
-4123
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+819
-4123
lines changed

BUILD.gn

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -98,16 +98,10 @@ rtc_shared_library("libwebrtc") {
9898
"include/helper.h",
9999
"src/helper.cc",
100100
"src/base/portable.cc",
101-
"src/internal/custom_audio_state.cc",
102-
"src/internal/custom_audio_state.h",
103101
"src/internal/custom_audio_transport_impl.cc",
104102
"src/internal/custom_audio_transport_impl.h",
105103
"src/internal/local_audio_track.cc",
106104
"src/internal/local_audio_track.h",
107-
"src/internal/custom_media_context.cc",
108-
"src/internal/custom_media_context.h",
109-
"src/internal/custom_webrtc_voice_engine.cc",
110-
"src/internal/custom_webrtc_voice_engine.h",
111105
"src/internal/vcm_capturer.cc",
112106
"src/internal/vcm_capturer.h",
113107
"src/internal/video_capturer.cc",

include/rtc_ice_transport.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ class IceTransportInit final {
3535
IceTransportInit& operator=(const IceTransportInit&) = delete;
3636
IceTransportInit& operator=(IceTransportInit&&) = default;
3737

38-
cricket::PortAllocator* port_allocator() { return port_allocator_; }
39-
void set_port_allocator(cricket::PortAllocator* port_allocator) {
38+
webrtc::PortAllocator* port_allocator() { return port_allocator_; }
39+
void set_port_allocator(webrtc::PortAllocator* port_allocator) {
4040
port_allocator_ = port_allocator;
4141
}
4242

File renamed without changes.

patchs/custom_audio_source_m137.patch

Lines changed: 367 additions & 0 deletions
Large diffs are not rendered by default.

src/helper.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
#include "helper.h"
22

3-
#include "rtc_base/helpers.h"
3+
#include "rtc_base/crypto_random.h"
44

55
namespace libwebrtc {
66
/**
77
* Generates a random UUID string using the WebRTC library function
8-
* rtc::CreateRandomUuid().
8+
* webrtc::CreateRandomUuid().
99
*
1010
* @return A string representation of a random UUID.
1111
*/
12-
string Helper::CreateRandomUuid() { return rtc::CreateRandomUuid(); }
12+
string Helper::CreateRandomUuid() { return webrtc::CreateRandomUuid(); }
1313

1414
} // namespace libwebrtc

src/internal/custom_audio_state.cc

Lines changed: 0 additions & 257 deletions
This file was deleted.

0 commit comments

Comments
 (0)