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 2035663002: Run "git cl format" on some files before I start to modify them (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@remove
Patch Set: rebase Created 4 years, 4 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 | « webrtc/modules/utility/include/file_player.h ('k') | webrtc/modules/utility/source/file_player_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
index 92c91bd4b0942f885530681984c08cced2899821..e04c1e29e1c62c6cdfc5fd54306a362df237f41a 100644
--- a/webrtc/modules/utility/include/file_recorder.h
+++ b/webrtc/modules/utility/include/file_recorder.h
@@ -19,46 +19,39 @@
namespace webrtc {
-class FileRecorder
-{
-public:
+class FileRecorder {
+ public:
+ // Note: will return NULL for unsupported formats.
+ static FileRecorder* CreateFileRecorder(const uint32_t instanceID,
+ const FileFormats fileFormat);
- // Note: will return NULL for unsupported formats.
- static FileRecorder* CreateFileRecorder(const uint32_t instanceID,
- const FileFormats fileFormat);
+ static void DestroyFileRecorder(FileRecorder* recorder);
- static void DestroyFileRecorder(FileRecorder* recorder);
+ virtual int32_t RegisterModuleFileCallback(FileCallback* callback) = 0;
- virtual int32_t RegisterModuleFileCallback(
- FileCallback* callback) = 0;
+ virtual FileFormats RecordingFileFormat() const = 0;
- virtual FileFormats RecordingFileFormat() const = 0;
+ virtual int32_t StartRecordingAudioFile(const char* fileName,
+ const CodecInst& codecInst,
+ uint32_t notification) = 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;
- virtual int32_t StartRecordingAudioFile(
- OutStream& destStream,
- const CodecInst& codecInst,
- uint32_t notification) = 0;
+ // Stop recording.
+ virtual int32_t StopRecording() = 0;
- // Stop recording.
- virtual int32_t StopRecording() = 0;
+ // Return true if recording.
+ virtual bool IsRecording() const = 0;
- // Return true if recording.
- virtual bool IsRecording() const = 0;
+ virtual int32_t codec_info(CodecInst& codecInst) 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;
-
-protected:
- virtual ~FileRecorder() {}
+ // Write frame to file. Frame should contain 10ms of un-ecoded audio data.
+ virtual int32_t RecordAudioToFile(const AudioFrame& frame) = 0;
+ protected:
+ virtual ~FileRecorder() {}
};
} // namespace webrtc
-#endif // WEBRTC_MODULES_UTILITY_INCLUDE_FILE_RECORDER_H_
+#endif // WEBRTC_MODULES_UTILITY_INCLUDE_FILE_RECORDER_H_
« no previous file with comments | « webrtc/modules/utility/include/file_player.h ('k') | webrtc/modules/utility/source/file_player_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698