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

Unified Diff: webrtc/modules/utility/include/file_recorder.h

Issue 2622493002: Move FilePlayer and FileRecorder to Voice Engine (Closed)
Patch Set: Created 3 years, 11 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
Index: webrtc/modules/utility/include/file_recorder.h
diff --git a/webrtc/modules/utility/include/file_recorder.h b/webrtc/modules/utility/include/file_recorder.h
deleted file mode 100644
index 6d4d3213548c2a711c3c661e1be94e400c72bd29..0000000000000000000000000000000000000000
--- a/webrtc/modules/utility/include/file_recorder.h
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
- * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
- *
- * Use of this source code is governed by a BSD-style license
- * that can be found in the LICENSE file in the root of the source
- * tree. An additional intellectual property rights grant can be found
- * in the file PATENTS. All contributing project authors may
- * be found in the AUTHORS file in the root of the source tree.
- */
-
-#ifndef WEBRTC_MODULES_UTILITY_INCLUDE_FILE_RECORDER_H_
-#define WEBRTC_MODULES_UTILITY_INCLUDE_FILE_RECORDER_H_
-
-#include <memory>
-
-#include "webrtc/common_types.h"
-#include "webrtc/modules/include/module_common_types.h"
-#include "webrtc/modules/media_file/media_file_defines.h"
-#include "webrtc/typedefs.h"
-
-namespace webrtc {
-
-class FileRecorder {
- public:
- // Note: will return NULL for unsupported formats.
- static std::unique_ptr<FileRecorder> CreateFileRecorder(
- const uint32_t instanceID,
- const FileFormats fileFormat);
-
- virtual ~FileRecorder() = default;
-
- virtual int32_t RegisterModuleFileCallback(FileCallback* callback) = 0;
-
- virtual FileFormats RecordingFileFormat() const = 0;
-
- virtual int32_t StartRecordingAudioFile(const char* fileName,
- const CodecInst& codecInst,
- uint32_t notification) = 0;
-
- virtual int32_t StartRecordingAudioFile(OutStream* destStream,
- const CodecInst& codecInst,
- uint32_t notification) = 0;
-
- // Stop recording.
- virtual int32_t StopRecording() = 0;
-
- // Return true if recording.
- virtual bool IsRecording() const = 0;
-
- virtual int32_t codec_info(CodecInst* codecInst) const = 0;
-
- // Write frame to file. Frame should contain 10ms of un-ecoded audio data.
- virtual int32_t RecordAudioToFile(const AudioFrame& frame) = 0;
-};
-
-} // namespace webrtc
-#endif // WEBRTC_MODULES_UTILITY_INCLUDE_FILE_RECORDER_H_

Powered by Google App Engine
This is Rietveld 408576698