HomeSort by relevance Sort by last modified time
    Searched refs:WavWriter (Results 1 - 13 of 13) sorted by null

  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
output_wav_file.h 36 WavWriter wav_writer_;
  /external/webrtc/webrtc/common_audio/
wav_file.cc 101 WavWriter::WavWriter(const std::string& filename, int sample_rate,
117 WavWriter::~WavWriter() {
121 void WavWriter::WriteSamples(const int16_t* samples, size_t num_samples) {
132 void WavWriter::WriteSamples(const float* samples, size_t num_samples) {
142 void WavWriter::Close() {
158 new webrtc::WavWriter(filename, sample_rate, num_channels));
162 delete reinterpret_cast<webrtc::WavWriter*>(wf);
168 reinterpret_cast<webrtc::WavWriter*>(wf)->WriteSamples(samples, num_samples)
    [all...]
wav_file.h 39 class WavWriter final : public WavFile {
42 WavWriter(const std::string& filename, int sample_rate, size_t num_channels);
45 ~WavWriter();
64 RTC_DISALLOW_COPY_AND_ASSIGN(WavWriter);
67 // Follows the conventions of WavWriter.
101 // C wrappers for the WavWriter class.
wav_file_unittest.cc 31 WavWriter w(outfile, 14099, 1);
39 // by WavReader. We don't use WavWriter directly for this because it doesn't
152 WavWriter w(outfile, kSampleRate, kNumChannels);
  /external/webrtc/webrtc/modules/audio_processing/test/
test_utils.h 62 // Writes ChannelBuffers to a provided WavWriter.
65 explicit ChannelBufferWavWriter(rtc::scoped_ptr<WavWriter> file);
69 rtc::scoped_ptr<WavWriter> file_;
77 WavWriter* wav_file,
83 WavWriter* wav_file,
audio_file_processor.h 89 rtc::scoped_ptr<WavWriter> out_file);
106 // Used to read from an aecdump file and write to a WavWriter.
112 rtc::scoped_ptr<WavWriter> out_file);
test_utils.cc 53 ChannelBufferWavWriter::ChannelBufferWavWriter(rtc::scoped_ptr<WavWriter> file)
67 WavWriter* wav_file,
80 WavWriter* wav_file,
unpack.cc 86 rtc::scoped_ptr<WavWriter> reverse_wav_file;
87 rtc::scoped_ptr<WavWriter> input_wav_file;
88 rtc::scoped_ptr<WavWriter> output_wav_file;
300 reverse_wav_file.reset(new WavWriter(FLAGS_reverse_file + ".wav",
303 input_wav_file.reset(new WavWriter(FLAGS_input_file + ".wav",
306 output_wav_file.reset(new WavWriter(FLAGS_output_file + ".wav",
audio_file_processor.cc 46 scoped_ptr<WavWriter> out_file)
71 scoped_ptr<WavWriter> out_file)
audioproc_float.cc 131 auto out_file = rtc_make_scoped_ptr(new WavWriter(
process_test.cc 494 rtc::scoped_ptr<WavWriter> output_wav_file;
646 output_wav_file.reset(new WavWriter(
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/intelligibility/test/
intelligibility_proc.cc 135 WavWriter out_file(temp_out_filename, FLAGS_sample_rate, kNumChannels);
141 WavWriter out_file(FLAGS_out_file, FLAGS_sample_rate, kNumChannels);
  /external/webrtc/webrtc/modules/audio_processing/beamformer/
nonlinear_beamformer_test.cc 46 WavWriter out_file(FLAGS_o, in_file.sample_rate(), 1);

Completed in 192 milliseconds