Skip to content

feat: upgrade to m137_release. #113

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -98,16 +98,10 @@ rtc_shared_library("libwebrtc") {
"include/helper.h",
"src/helper.cc",
"src/base/portable.cc",
"src/internal/custom_audio_state.cc",
"src/internal/custom_audio_state.h",
"src/internal/custom_audio_transport_impl.cc",
"src/internal/custom_audio_transport_impl.h",
"src/internal/local_audio_track.cc",
"src/internal/local_audio_track.h",
"src/internal/custom_media_context.cc",
"src/internal/custom_media_context.h",
"src/internal/custom_webrtc_voice_engine.cc",
"src/internal/custom_webrtc_voice_engine.h",
"src/internal/vcm_capturer.cc",
"src/internal/vcm_capturer.h",
"src/internal/video_capturer.cc",
Expand Down
4 changes: 2 additions & 2 deletions include/rtc_ice_transport.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ class IceTransportInit final {
IceTransportInit& operator=(const IceTransportInit&) = delete;
IceTransportInit& operator=(IceTransportInit&&) = default;

cricket::PortAllocator* port_allocator() { return port_allocator_; }
void set_port_allocator(cricket::PortAllocator* port_allocator) {
webrtc::PortAllocator* port_allocator() { return port_allocator_; }
void set_port_allocator(webrtc::PortAllocator* port_allocator) {
port_allocator_ = port_allocator;
}

Expand Down
File renamed without changes.
367 changes: 367 additions & 0 deletions patchs/custom_audio_source_m137.patch

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/helper.cc
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#include "helper.h"

#include "rtc_base/helpers.h"
#include "rtc_base/crypto_random.h"

namespace libwebrtc {
/**
* Generates a random UUID string using the WebRTC library function
* rtc::CreateRandomUuid().
* webrtc::CreateRandomUuid().
*
* @return A string representation of a random UUID.
*/
string Helper::CreateRandomUuid() { return rtc::CreateRandomUuid(); }
string Helper::CreateRandomUuid() { return webrtc::CreateRandomUuid(); }

} // namespace libwebrtc
257 changes: 0 additions & 257 deletions src/internal/custom_audio_state.cc

This file was deleted.

Loading