Remove various IDs:
- AudioFrame - AudioCodingModule BUG=webrtc:4690 TBR=kwiberg@webrtc.org Review-Url: https://codereview.webrtc.org/3019543002 Cr-Original-Commit-Position: refs/heads/master@{#20005} Committed: https://webrtc.googlesource.com/src/+/2d0f77585d556d8b11d6269d35149ae9ca14c472 Review-Url: https://codereview.webrtc.org/3019543002 Cr-Commit-Position: refs/heads/master@{#20019}
This commit is contained in:
@ -70,7 +70,6 @@ class AudioCodingModule {
|
||||
Config(const Config&);
|
||||
~Config();
|
||||
|
||||
int id;
|
||||
NetEq::Config neteq_config;
|
||||
Clock* clock;
|
||||
rtc::scoped_refptr<AudioDecoderFactory> decoder_factory;
|
||||
@ -83,8 +82,10 @@ class AudioCodingModule {
|
||||
// injected into ACM. ACM will take the ownership of the object clock and
|
||||
// delete it when destroyed.
|
||||
//
|
||||
static AudioCodingModule* Create(int id);
|
||||
static AudioCodingModule* Create(int id, Clock* clock);
|
||||
// TODO(solenberg): Remove once downstream projects are updated.
|
||||
RTC_DEPRECATED static AudioCodingModule* Create(int id);
|
||||
static AudioCodingModule* Create();
|
||||
static AudioCodingModule* Create(Clock* clock);
|
||||
static AudioCodingModule* Create(const Config& config);
|
||||
virtual ~AudioCodingModule() = default;
|
||||
|
||||
|
Reference in New Issue
Block a user