HomeSort by relevance Sort by last modified time
    Searched refs:ProvideInput (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/media/base/
audio_renderer_mixer_input_unittest.cc 55 double ProvideInput() {
56 return mixer_input_->ProvideInput(audio_bus_.get(), base::TimeDelta());
74 // returned from ProvideInput() only when playing.
80 EXPECT_DOUBLE_EQ(ProvideInput(), 1);
84 EXPECT_DOUBLE_EQ(ProvideInput(), kVolume);
95 EXPECT_DOUBLE_EQ(ProvideInput(), 1);
98 EXPECT_DOUBLE_EQ(ProvideInput(), 1);
sinc_resampler_unittest.cc 28 MOCK_METHOD2(ProvideInput, void(int frames, float* destination));
51 base::Bind(&MockSource::ProvideInput, base::Unretained(&mock_source)));
58 EXPECT_CALL(mock_source, ProvideInput(_, _))
64 EXPECT_CALL(mock_source, ProvideInput(_, _))
74 base::Bind(&MockSource::ProvideInput, base::Unretained(&mock_source)));
78 EXPECT_CALL(mock_source, ProvideInput(_, _))
86 EXPECT_CALL(mock_source, ProvideInput(_, _))
98 base::Bind(&MockSource::ProvideInput, base::Unretained(&mock_source)));
127 base::Bind(&MockSource::ProvideInput, base::Unretained(&mock_source)));
173 void ProvideInput(int frames, float* destination)
    [all...]
fake_audio_render_callback.h 34 virtual double ProvideInput(AudioBus* audio_bus,
multi_channel_resampler.h 55 // SincResampler::ReadCB implementation. ProvideInput() will be called for
57 void ProvideInput(int channel, int frames, float* destination);
69 // the first channel points to the |destination| provided to ProvideInput().
audio_converter.h 58 virtual double ProvideInput(AudioBus* audio_bus,
90 // to each input's ProvideInput for more data.
98 void ProvideInput(int resampler_frame_delay, AudioBus* audio_bus);
audio_pull_fifo_unittest.cc 31 &AudioPullFifoTest::ProvideInput, base::Unretained(this))),
62 virtual void ProvideInput(int frame_delay, AudioBus* audio_bus) {
audio_buffer_converter.h 54 virtual double ProvideInput(AudioBus* audio_bus,
79 // Offset into the front element of |queued_inputs_|. A ProvideInput() call
99 // full AudioBuses in ProvideInput()?
audio_renderer_mixer_input.h 52 virtual double ProvideInput(AudioBus* audio_bus,
fake_audio_render_callback.cc 44 double FakeAudioRenderCallback::ProvideInput(AudioBus* audio_bus,
multi_channel_resampler.cc 26 &MultiChannelResampler::ProvideInput, base::Unretained(this), i)));
33 // |destination| provided to ProvideInput() directly.
54 // We need to ensure that SincResampler only calls ProvideInput once for each
57 // only call ProvideInput() once when we resample this way.
69 // sometimes call ProvideInput(). However, if it calls ProvideInput() for
81 void MultiChannelResampler::ProvideInput(int channel,
multi_channel_resampler_unittest.cc 52 virtual void ProvideInput(int frame_delay, AudioBus* audio_bus) {
68 &MultiChannelResamplerTest::ProvideInput, base::Unretained(this)));
audio_converter.cc 60 base::Bind(&AudioConverter::ProvideInput, base::Unretained(this))));
149 ProvideInput(0, temp_dest);
204 const float volume = input->ProvideInput(provide_input_dest, buffer_delay);
241 void AudioConverter::ProvideInput(int resampler_frame_delay, AudioBus* dest) {
audio_converter_perftest.cc 21 virtual double ProvideInput(AudioBus* audio_bus,
audio_renderer_mixer_input.cc 97 double AudioRendererMixerInput::ProvideInput(AudioBus* audio_bus,
audio_buffer_converter.cc 92 double AudioBufferConverter::ProvideInput(AudioBus* audio_bus,
176 // we'll have to pad some silence in ProvideInput().
180 // How many calls to ProvideInput() we can satisfy completely.
  /external/chromium_org/media/audio/
virtual_audio_output_stream.h 49 virtual double ProvideInput(AudioBus* audio_bus,
virtual_audio_output_stream.cc 74 double VirtualAudioOutputStream::ProvideInput(AudioBus* audio_bus,
audio_output_resampler.cc 47 virtual double ProvideInput(AudioBus* audio_bus,
58 // playback delay by ProvideInput() and passed on to |source_callback_|.
334 // Always return the full number of frames requested, ProvideInput()
339 double OnMoreDataConverter::ProvideInput(AudioBus* dest,
virtual_audio_input_stream.cc 39 virtual double ProvideInput(AudioBus* audio_bus,
  /external/chromium_org/content/renderer/media/
webrtc_local_audio_source_provider.h 40 // MediaStreamAudioSourceNode will periodically call provideInput() to get the
66 virtual void provideInput(const blink::WebVector<float*>& audio_data,
70 // This function is triggered by provideInput()on the WebAudio audio thread,
72 virtual double ProvideInput(media::AudioBus* audio_bus,
webrtc_local_audio_source_provider.cc 120 void WebRtcLocalAudioSourceProvider::provideInput(
140 double WebRtcLocalAudioSourceProvider::ProvideInput(
webaudiosourceprovider_impl_unittest.cc 157 // Test the AudioRendererSink state machine and its effects on provideInput().
158 TEST_F(WebAudioSourceProviderImplTest, ProvideInput) {
167 // Verify provideInput() works before Initialize() and returns silence.
170 wasp_impl_->provideInput(audio_data, params_.frames_per_buffer());
176 // Verify provideInput() is muted prior to Start() and no calls to the render
180 wasp_impl_->provideInput(audio_data, params_.frames_per_buffer());
188 wasp_impl_->provideInput(audio_data, params_.frames_per_buffer());
195 wasp_impl_->provideInput(audio_data, params_.frames_per_buffer());
205 wasp_impl_->provideInput(audio_data, params_.frames_per_buffer());
212 wasp_impl_->provideInput(audio_data, params_.frames_per_buffer())
    [all...]
  /external/chromium_org/media/audio/mac/
audio_auhal_mac.h 88 void ProvideInput(int frame_delay, AudioBus* dest);
audio_auhal_mac.cc 201 base::Bind(&AUHALStream::ProvideInput, base::Unretained(this))));
216 ProvideInput(0, output_bus_.get());
221 void AUHALStream::ProvideInput(int frame_delay, AudioBus* dest) {
  /external/chromium_org/content/browser/speech/
speech_recognizer_impl.cc 47 virtual double ProvideInput(AudioBus* dest,
155 double SpeechRecognizerImpl::OnDataConverter::ProvideInput(
546 // call will then render exactly one ProvideInput() call.

Completed in 740 milliseconds

1 2