/external/chromium_org/content/public/renderer/ |
media_stream_audio_sink.h | 51 virtual void OnSetFormat(const media::AudioParameters& params) = 0;
|
/external/chromium_org/content/renderer/media/ |
media_stream_audio_sink_owner.h | 32 virtual void OnSetFormat(const media::AudioParameters& params) OVERRIDE;
|
peer_connection_audio_sink_owner.h | 32 virtual void OnSetFormat(const media::AudioParameters& params) OVERRIDE;
|
media_stream_audio_sink_owner.cc | 38 void MediaStreamAudioSinkOwner::OnSetFormat( 42 delegate_->OnSetFormat(params);
|
peer_connection_audio_sink_owner.cc | 41 void PeerConnectionAudioSinkOwner::OnSetFormat( 45 delegate_->OnSetFormat(params);
|
media_stream_audio_track_sink.h | 34 virtual void OnSetFormat(const media::AudioParameters& params) = 0;
|
webaudiosourceprovider_impl.h | 57 void OnSetFormat(); 61 // Closure that posts a task to call OnSetFormat() on the renderer thread.
|
webrtc_local_audio_renderer.h | 85 virtual void OnSetFormat(const media::AudioParameters& params) OVERRIDE;
|
webrtc_local_audio_source_provider.h | 57 virtual void OnSetFormat(const media::AudioParameters& params) OVERRIDE;
|
webrtc_local_audio_track_unittest.cc | 155 MOCK_METHOD1(OnSetFormat, void(const media::AudioParameters& params)); 205 EXPECT_CALL(*sink, OnSetFormat(_)).WillOnce(Return()); 248 EXPECT_CALL(*sink, OnSetFormat(_)).Times(1); 300 EXPECT_CALL(*sink_1, OnSetFormat(_)).WillOnce(Return()); 329 EXPECT_CALL(*sink_2, OnSetFormat(_)).WillOnce(Return()); 408 EXPECT_CALL(*sink, OnSetFormat(_)).WillOnce(SignalEvent(&event)); 432 EXPECT_CALL(*sink, OnSetFormat(_)).Times(0); 498 EXPECT_CALL(*sink_1.get(), OnSetFormat(_)).Times(AnyNumber()); 536 EXPECT_CALL(*sink_2, OnSetFormat(_)).WillOnce(SignalEvent(&event)); 587 EXPECT_CALL(*sink, OnSetFormat(_)).Times(1) [all...] |
webaudiosourceprovider_impl.cc | 75 base::Bind(&WebAudioSourceProviderImpl::OnSetFormat, 180 void WebAudioSourceProviderImpl::OnSetFormat() {
|
webrtc_audio_capturer_unittest.cc | 81 MOCK_METHOD1(OnSetFormat, void(const media::AudioParameters& params)); 151 EXPECT_CALL(*sink, OnSetFormat(_));
|
webrtc_audio_device_impl.h | 232 virtual void OnSetFormat(const media::AudioParameters& params) = 0; 344 virtual void OnSetFormat(const media::AudioParameters& params) OVERRIDE;
|
webrtc_local_audio_track.h | 55 // Add a sink to the track. This function will trigger a OnSetFormat() 88 void OnSetFormat(const media::AudioParameters& params);
|
webaudio_capturer_source.cc | 87 track_->OnSetFormat(params_);
|
webrtc_local_audio_source_provider.cc | 46 void WebRtcLocalAudioSourceProvider::OnSetFormat( 49 // calling OnSetFormat() and OnData() if the source is restarted.
|
webrtc_local_audio_source_provider_unittest.cc | 28 source_provider_->OnSetFormat(source_params_);
|
webrtc_audio_capturer.cc | 60 void OnSetFormat(const media::AudioParameters& params) { 63 delegate_->OnSetFormat(params); 248 // Add with a tag, so we remember to call OnSetFormat() on the new 460 (*it)->OnSetFormat(params);
|
webrtc_local_audio_track.cc | 185 (*it)->OnSetFormat(buffer_->params()); 229 void WebRtcLocalAudioTrack::OnSetFormat( 231 DVLOG(1) << "WebRtcLocalAudioTrack::OnSetFormat()"; 294 // we remember to call OnSetFormat() on the new sink. 328 // we remember to call OnSetFormat() on the new sink.
|
webrtc_local_audio_renderer.cc | 88 void WebRtcLocalAudioRenderer::OnSetFormat( 90 DVLOG(1) << "WebRtcLocalAudioRenderer::OnSetFormat()";
|
webrtc_audio_device_impl.cc | 109 void WebRtcAudioDeviceImpl::OnSetFormat( 111 DVLOG(1) << "WebRtcAudioDeviceImpl::OnSetFormat()";
|
webrtc_audio_device_unittest.cc | 234 virtual void OnSetFormat( 334 // We use OnSetFormat() and SetRenderFormat() to configure the audio [all...] |
/external/chromium_org/chrome/renderer/media/ |
cast_rtp_stream.cc | 185 virtual void OnSetFormat(
|