diff --git a/webrtc/audio/utility/audio_frame_operations.h b/webrtc/audio/utility/audio_frame_operations.h index 56f318fade..23c33ec67e 100644 --- a/webrtc/audio/utility/audio_frame_operations.h +++ b/webrtc/audio/utility/audio_frame_operations.h @@ -115,17 +115,7 @@ class AudioFrameOperations { static int Scale(float left, float right, AudioFrame* frame); - static int Scale(float left, float right, AudioFrame& frame) { // NOLINT - // TODO(oprypin): drop this method - return Scale(left, right, &frame); - } - static int ScaleWithSat(float scale, AudioFrame* frame); - - static int ScaleWithSat(float scale, AudioFrame& frame) { // NOLINT - // TODO(oprypin): drop this method - return ScaleWithSat(scale, &frame); - } }; } // namespace webrtc