HomeSort by relevance Sort by last modified time
    Searched defs:Resampler (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/webrtc/common_audio/resampler/
resampler.cc 19 #include "webrtc/common_audio/resampler/include/resampler.h"
26 Resampler::Resampler()
46 Resampler::Resampler(int inFreq, int outFreq, ResamplerType type)
68 Resampler::~Resampler()
100 int Resampler::ResetIfNeeded(int inFreq, int outFreq, ResamplerType type)
115 int Resampler::Reset(int inFreq, int outFreq, ResamplerType type
    [all...]
  /external/webrtc/src/common_audio/resampler/
resampler.cc 20 #include "resampler.h"
26 Resampler::Resampler()
46 Resampler::Resampler(int inFreq, int outFreq, ResamplerType type)
68 Resampler::~Resampler()
100 int Resampler::ResetIfNeeded(int inFreq, int outFreq, ResamplerType type)
115 int Resampler::Reset(int inFreq, int outFreq, ResamplerType type)
189 slave_left_ = new Resampler(inFreq, outFreq, type)
    [all...]
  /external/chromium_org/third_party/webrtc/common_audio/resampler/include/
resampler.h 64 class Resampler
68 Resampler();
70 Resampler(int inFreq, int outFreq, ResamplerType type);
71 ~Resampler();
110 Resampler* slave_left_;
111 Resampler* slave_right_;
  /external/webrtc/src/common_audio/resampler/include/
resampler.h 64 class Resampler
68 Resampler();
70 Resampler(int inFreq, int outFreq, ResamplerType type);
71 ~Resampler();
110 Resampler* slave_left_;
111 Resampler* slave_right_;
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
gbemu.js 318 // Start of js/other/resampler.js file.
320 //JavaScript Audio Resampler (c) 2011 - Grant Galitz
321 function Resampler(fromSampleRate, toSampleRate, channels, outputBufferSize, noReturn) {
329 Resampler.prototype.initialize = function () {
333 //Setup a resampler bypass:
334 this.resampler = this.bypassResampler; //Resampler just returns what was passed through.
338 //Setup the interpolation resampler:
340 this.resampler = this.interpolate; //Resampler is a custom quality interpolation algorithm
    [all...]

Completed in 130 milliseconds