mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-16 23:30:48 +01:00

This CL is the result of running include-what-you-use tool on part of the code base (audio target and dependencies) plus manual fixes. bug: webrtc:8311 Change-Id: I277d281ce943c3ecc1bd45fd8d83055931743604 Reviewed-on: https://webrtc-review.googlesource.com/c/106280 Commit-Queue: Yves Gerey <yvesg@google.com> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Patrik Höglund <phoglund@webrtc.org> Cr-Commit-Position: refs/heads/master@{#25311}
42 lines
1.5 KiB
C++
42 lines
1.5 KiB
C++
/*
|
|
* Copyright (c) 2014 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 AUDIO_DEVICE_FILE_AUDIO_DEVICE_FACTORY_H_
|
|
#define AUDIO_DEVICE_FILE_AUDIO_DEVICE_FACTORY_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace webrtc {
|
|
|
|
class FileAudioDevice;
|
|
|
|
// This class is used by audio_device_impl.cc when WebRTC is compiled with
|
|
// WEBRTC_DUMMY_FILE_DEVICES. The application must include this file and set the
|
|
// filenames to use before the audio device module is initialized. This is
|
|
// intended for test tools which use the audio device module.
|
|
class FileAudioDeviceFactory {
|
|
public:
|
|
static FileAudioDevice* CreateFileAudioDevice();
|
|
|
|
// The input file must be a readable 48k stereo raw file. The output
|
|
// file must be writable. The strings will be copied.
|
|
static void SetFilenamesToUse(const char* inputAudioFilename,
|
|
const char* outputAudioFilename);
|
|
|
|
private:
|
|
enum : uint32_t { MAX_FILENAME_LEN = 512 };
|
|
static bool _isConfigured;
|
|
static char _inputAudioFilename[MAX_FILENAME_LEN];
|
|
static char _outputAudioFilename[MAX_FILENAME_LEN];
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // AUDIO_DEVICE_FILE_AUDIO_DEVICE_FACTORY_H_
|