Remove deprecated Audio Processing APIs
This change removes the deprecated ChannelLayout versions of ProcessStream and AnalyzeReverseStream. Bug: webrtc:5298 Change-Id: I8a7e33e89cffac5eceecd00dfd3c96000643f51b Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/158529 Reviewed-by: Per Åhgren <peah@webrtc.org> Commit-Queue: Gustaf Ullberg <gustaf@webrtc.org> Cr-Commit-Position: refs/heads/master@{#29641}
This commit is contained in:
committed by
Commit Bot
parent
6e4e68852a
commit
cb30726646
@ -82,13 +82,6 @@ class AudioProcessingImpl : public AudioProcessing {
|
||||
// Capture-side exclusive methods possibly running APM in a
|
||||
// multi-threaded manner. Acquire the capture lock.
|
||||
int ProcessStream(AudioFrame* frame) override;
|
||||
int ProcessStream(const float* const* src,
|
||||
size_t samples_per_channel,
|
||||
int input_sample_rate_hz,
|
||||
ChannelLayout input_layout,
|
||||
int output_sample_rate_hz,
|
||||
ChannelLayout output_layout,
|
||||
float* const* dest) override;
|
||||
int ProcessStream(const float* const* src,
|
||||
const StreamConfig& input_config,
|
||||
const StreamConfig& output_config,
|
||||
@ -104,10 +97,6 @@ class AudioProcessingImpl : public AudioProcessing {
|
||||
// Render-side exclusive methods possibly running APM in a
|
||||
// multi-threaded manner. Acquire the render lock.
|
||||
int ProcessReverseStream(AudioFrame* frame) override;
|
||||
int AnalyzeReverseStream(const float* const* data,
|
||||
size_t samples_per_channel,
|
||||
int sample_rate_hz,
|
||||
ChannelLayout layout) override;
|
||||
int AnalyzeReverseStream(const float* const* data,
|
||||
const StreamConfig& reverse_config) override;
|
||||
int ProcessReverseStream(const float* const* src,
|
||||
|
||||
Reference in New Issue
Block a user