2015-11-04 08:31:52 +01:00
|
|
|
/*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-01-10 01:12:51 -08:00
|
|
|
#ifndef WEBRTC_VOICE_ENGINE_FILE_RECORDER_H_
|
|
|
|
|
#define WEBRTC_VOICE_ENGINE_FILE_RECORDER_H_
|
2015-11-04 08:31:52 +01:00
|
|
|
|
2016-08-17 07:31:12 -07:00
|
|
|
#include <memory>
|
|
|
|
|
|
2015-11-04 08:31:52 +01:00
|
|
|
#include "webrtc/common_types.h"
|
|
|
|
|
#include "webrtc/modules/include/module_common_types.h"
|
2015-11-16 11:12:24 +01:00
|
|
|
#include "webrtc/modules/media_file/media_file_defines.h"
|
2015-11-04 08:31:52 +01:00
|
|
|
#include "webrtc/typedefs.h"
|
|
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
2016-08-16 05:35:24 -07:00
|
|
|
class FileRecorder {
|
|
|
|
|
public:
|
|
|
|
|
// Note: will return NULL for unsupported formats.
|
2016-08-17 07:31:12 -07:00
|
|
|
static std::unique_ptr<FileRecorder> CreateFileRecorder(
|
|
|
|
|
const uint32_t instanceID,
|
|
|
|
|
const FileFormats fileFormat);
|
2015-11-04 08:31:52 +01:00
|
|
|
|
2016-08-17 07:31:12 -07:00
|
|
|
virtual ~FileRecorder() = default;
|
2015-11-04 08:31:52 +01:00
|
|
|
|
2016-08-16 05:35:24 -07:00
|
|
|
virtual int32_t RegisterModuleFileCallback(FileCallback* callback) = 0;
|
2015-11-04 08:31:52 +01:00
|
|
|
|
2016-08-16 05:35:24 -07:00
|
|
|
virtual FileFormats RecordingFileFormat() const = 0;
|
2015-11-04 08:31:52 +01:00
|
|
|
|
2016-08-16 05:35:24 -07:00
|
|
|
virtual int32_t StartRecordingAudioFile(const char* fileName,
|
|
|
|
|
const CodecInst& codecInst,
|
|
|
|
|
uint32_t notification) = 0;
|
2015-11-04 08:31:52 +01:00
|
|
|
|
2016-08-22 08:43:54 -07:00
|
|
|
virtual int32_t StartRecordingAudioFile(OutStream* destStream,
|
2016-08-16 05:35:24 -07:00
|
|
|
const CodecInst& codecInst,
|
|
|
|
|
uint32_t notification) = 0;
|
2015-11-04 08:31:52 +01:00
|
|
|
|
2016-08-16 05:35:24 -07:00
|
|
|
// Stop recording.
|
|
|
|
|
virtual int32_t StopRecording() = 0;
|
2015-11-04 08:31:52 +01:00
|
|
|
|
2016-08-16 05:35:24 -07:00
|
|
|
// Return true if recording.
|
|
|
|
|
virtual bool IsRecording() const = 0;
|
2015-11-04 08:31:52 +01:00
|
|
|
|
2016-08-22 08:43:54 -07:00
|
|
|
virtual int32_t codec_info(CodecInst* codecInst) const = 0;
|
2015-11-04 08:31:52 +01:00
|
|
|
|
2016-08-16 05:35:24 -07:00
|
|
|
// Write frame to file. Frame should contain 10ms of un-ecoded audio data.
|
|
|
|
|
virtual int32_t RecordAudioToFile(const AudioFrame& frame) = 0;
|
2015-11-04 08:31:52 +01:00
|
|
|
};
|
2016-08-17 07:31:12 -07:00
|
|
|
|
2015-11-04 08:31:52 +01:00
|
|
|
} // namespace webrtc
|
2017-01-10 01:12:51 -08:00
|
|
|
#endif // WEBRTC_VOICE_ENGINE_FILE_RECORDER_H_
|