OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OnSetFormat
(Results
1 - 25
of
27
) sorted by null
1
2
/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/webrtc/
webrtc_audio_sink_adapter.cc
33
void WebRtcAudioSinkAdapter::
OnSetFormat
(
35
// No need to forward the
OnSetFormat
() callback to
webrtc_audio_sink_adapter.h
36
virtual void
OnSetFormat
(const media::AudioParameters& params) OVERRIDE;
webrtc_local_audio_track_adapter_unittest.cc
49
track_->
OnSetFormat
(params_);
/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;
webrtc_local_audio_renderer.h
86
virtual void
OnSetFormat
(const media::AudioParameters& params) OVERRIDE;
webrtc_local_audio_source_provider.h
60
virtual void
OnSetFormat
(const media::AudioParameters& params) OVERRIDE;
webrtc_local_audio_track.h
44
// Add a sink to the track. This function will trigger a
OnSetFormat
()
79
void
OnSetFormat
(const media::AudioParameters& params);
webrtc_audio_device_impl.h
229
virtual void
OnSetFormat
(const media::AudioParameters& params) = 0;
378
virtual void
OnSetFormat
(const media::AudioParameters& params) OVERRIDE;
webaudio_capturer_source.cc
89
track_->
OnSetFormat
(params_);
webrtc_local_audio_track.cc
69
(*it)->
OnSetFormat
(audio_parameters_);
98
void WebRtcLocalAudioTrack::
OnSetFormat
(
100
DVLOG(1) << "WebRtcLocalAudioTrack::
OnSetFormat
()";
136
// we remember to call
OnSetFormat
() on the new sink.
170
// we remember to call
OnSetFormat
() on the new sink.
webrtc_audio_capturer.cc
74
void
OnSetFormat
(const media::AudioParameters& params) {
77
delegate_->
OnSetFormat
(params);
271
// Add with a tag, so we remember to call
OnSetFormat
() on the new
515
(*it)->
OnSetFormat
(output_params);
webrtc_audio_capturer_unittest.cc
62
virtual void
OnSetFormat
(const media::AudioParameters& params) OVERRIDE {
webrtc_local_audio_source_provider.cc
57
void WebRtcLocalAudioSourceProvider::
OnSetFormat
(
60
// calling
OnSetFormat
() and OnData() if the source is restarted.
webrtc_local_audio_source_provider_unittest.cc
51
source_provider_->
OnSetFormat
(source_params_);
webrtc_local_audio_renderer.cc
86
void WebRtcLocalAudioRenderer::
OnSetFormat
(
88
DVLOG(1) << "WebRtcLocalAudioRenderer::
OnSetFormat
()";
webrtc_audio_device_impl.cc
122
void WebRtcAudioDeviceImpl::
OnSetFormat
(
124
DVLOG(1) << "WebRtcAudioDeviceImpl::
OnSetFormat
()";
/external/chromium_org/media/blink/
webaudiosourceprovider_impl.h
57
void
OnSetFormat
();
59
// Closure that posts a task to call
OnSetFormat
() on the renderer thread.
webaudiosourceprovider_impl.cc
74
&WebAudioSourceProviderImpl::
OnSetFormat
, weak_factory_.GetWeakPtr()));
184
void WebAudioSourceProviderImpl::
OnSetFormat
() {
/external/chromium_org/content/renderer/pepper/
pepper_media_stream_audio_track_host.h
71
virtual void
OnSetFormat
(const media::AudioParameters& params) OVERRIDE;
93
//
OnSetFormat
being called.
pepper_media_stream_audio_track_host.cc
112
// Initialize later in
OnSetFormat
if bytes_per_second_ is not known yet.
278
void PepperMediaStreamAudioTrackHost::AudioSink::
OnSetFormat
(
Completed in 525 milliseconds
1
2