aboutsummaryrefslogtreecommitdiff
path: root/webrtc/modules/audio_processing/include/audio_processing.h
diff options
context:
space:
mode:
Diffstat (limited to 'webrtc/modules/audio_processing/include/audio_processing.h')
-rw-r--r--webrtc/modules/audio_processing/include/audio_processing.h15
1 files changed, 3 insertions, 12 deletions
diff --git a/webrtc/modules/audio_processing/include/audio_processing.h b/webrtc/modules/audio_processing/include/audio_processing.h
index c96f23a228..5fcc4d4672 100644
--- a/webrtc/modules/audio_processing/include/audio_processing.h
+++ b/webrtc/modules/audio_processing/include/audio_processing.h
@@ -408,22 +408,13 @@ class AudioProcessing {
// Starts recording debugging information to a file specified by |filename|,
// a NULL-terminated string. If there is an ongoing recording, the old file
// will be closed, and recording will continue in the newly specified file.
- // An already existing file will be overwritten without warning. A maximum
- // file size (in bytes) for the log can be specified. The logging is stopped
- // once the limit has been reached. If max_log_size_bytes is set to a value
- // <= 0, no limit will be used.
+ // An already existing file will be overwritten without warning.
static const size_t kMaxFilenameSize = 1024;
- virtual int StartDebugRecording(const char filename[kMaxFilenameSize],
- int64_t max_log_size_bytes) = 0;
+ virtual int StartDebugRecording(const char filename[kMaxFilenameSize]) = 0;
// Same as above but uses an existing file handle. Takes ownership
// of |handle| and closes it at StopDebugRecording().
- virtual int StartDebugRecording(FILE* handle, int64_t max_log_size_bytes) = 0;
-
- // TODO(ivoc): Remove this function after Chromium switches to the one above.
- virtual int StartDebugRecording(FILE* handle) {
- return StartDebugRecording(handle, -1);
- }
+ virtual int StartDebugRecording(FILE* handle) = 0;
// Same as above but uses an existing PlatformFile handle. Takes ownership
// of |handle| and closes it at StopDebugRecording().