Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(290)

Unified Diff: webrtc/audio/utility/audio_frame_operations.h

Issue 2861003004: Drop deprecated AudioFrameOperations::Scale methods (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/audio/utility/audio_frame_operations.h
diff --git a/webrtc/audio/utility/audio_frame_operations.h b/webrtc/audio/utility/audio_frame_operations.h
index 56f318fadeacd7c2dd6a482318ac1291458f3842..23c33ec67e0031ced1b165012d07150053f3b8cb 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);
henrika_webrtc 2017/05/09 08:06:22 Why is not removed completely?
- 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698