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

  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
AudioSourceProvider.h 40 // provideInput() gets called repeatedly to render time-slices of a continuous audio stream.
41 virtual void provideInput(AudioBus* bus, size_t framesToProcess) = 0;
MultiChannelResampler.cpp 54 // provideInput() will be called once for each channel, starting with the first channel.
56 virtual void provideInput(AudioBus* bus, size_t framesToProcess)
68 m_multiChannelProvider->provideInput(m_multiChannelBus.get(), framesToProcess);
112 // kernel, this call to process() will only sometimes call provideInput() on the channelProvider.
113 // However, if it calls provideInput() for the first channel, then it will call it for the remaining
AudioPullFIFO.cpp 65 m_provider.provideInput(m_tempBus.get(), m_providerSize);
AudioResampler.cpp 101 provider->provideInput(m_sourceBus.get(), m_sourceBus->length());
SincResampler.cpp 142 m_sourceProvider->provideInput(bus.get(), numberOfSourceFrames);
158 virtual void provideInput(AudioBus* bus, size_t framesToProcess)
  /external/chromium_org/third_party/WebKit/public/web/
WebAudioSourceProvider.h 37 // provideInput() gets called repeatedly to render time-slices of a continuous audio stream.
38 virtual void provideInput(const WebVector<float*>& audioData, size_t numberOfFrames) = 0;
  /external/chromium_org/content/renderer/media/
webaudiosourceprovider_impl_unittest.cc 150 // Test the AudioRendererSink state machine and its effects on provideInput().
151 TEST_F(WebAudioSourceProviderImplTest, ProvideInput) {
160 // Verify provideInput() works before Initialize() and returns silence.
163 wasp_impl_->provideInput(audio_data, params_.frames_per_buffer());
169 // Verify provideInput() is muted prior to Start() and no calls to the render
173 wasp_impl_->provideInput(audio_data, params_.frames_per_buffer());
181 wasp_impl_->provideInput(audio_data, params_.frames_per_buffer());
188 wasp_impl_->provideInput(audio_data, params_.frames_per_buffer());
198 wasp_impl_->provideInput(audio_data, params_.frames_per_buffer());
205 wasp_impl_->provideInput(audio_data, params_.frames_per_buffer())
    [all...]
webaudiosourceprovider_impl.h 25 // periodically call provideInput() to render a certain number of audio
38 virtual void provideInput(const WebKit::WebVector<float*>& audio_data,
webaudiosourceprovider_impl.cc 66 // The client will now take control by calling provideInput() periodically.
88 void WebAudioSourceProviderImpl::provideInput(
  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/chromium/
AudioDestinationChromium.h 61 virtual void provideInput(AudioBus*, size_t framesToProcess);
AudioDestinationChromium.cpp 167 void AudioDestinationChromium::provideInput(AudioBus* bus, size_t framesToProcess)
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioDestinationNode.h 81 virtual void provideInput(AudioBus* destinationBus, size_t numberOfFrames)
MediaStreamAudioSourceNode.cpp 108 audioSourceProvider()->provideInput(outputBus, numberOfFrames);
MediaElementAudioSourceNode.cpp 125 provider->provideInput(outputBus, numberOfFrames);
  /external/chromium_org/third_party/WebKit/Source/web/
WebMediaPlayerClientImpl.h 201 // provideInput() calls into Chromium to get a rendered audio stream.
217 virtual void provideInput(WebCore::AudioBus*, size_t framesToProcess);
WebMediaPlayerClientImpl.cpp 720 void WebMediaPlayerClientImpl::AudioSourceProviderImpl::provideInput(AudioBus* bus, size_t framesToProcess)
738 m_webAudioSourceProvider->provideInput(webAudioData, framesToProcess);

Completed in 343 milliseconds