Searched refs:audio_track (Results 1 - 25 of 32) sorted by relevance

12

/external/chromium_org/ppapi/c/
H A Dppb_media_stream_audio_track.h112 * @param[in] audio_track A <code>PP_Resource</code> corresponding to an audio
123 int32_t (*Configure)(PP_Resource audio_track,
129 * @param[in] audio_track A <code>PP_Resource</code> corresponding to an audio
138 int32_t (*GetAttrib)(PP_Resource audio_track,
144 * @param[in] audio_track The <code>PP_Resource</code> to check.
149 struct PP_Var (*GetId)(PP_Resource audio_track);
155 * @param[in] audio_track The <code>PP_Resource</code> to check.
160 PP_Bool (*HasEnded)(PP_Resource audio_track);
172 * @param[in] audio_track A <code>PP_Resource</code> corresponding to an audio
181 int32_t (*GetBuffer)(PP_Resource audio_track,
[all...]
/external/chromium_org/ppapi/api/
H A Dppb_media_stream_audio_track.idl97 * @param[in] audio_track A <code>PP_Resource</code> corresponding to an audio
108 int32_t Configure([in] PP_Resource audio_track,
115 * @param[in] audio_track A <code>PP_Resource</code> corresponding to an audio
124 int32_t GetAttrib([in] PP_Resource audio_track,
131 * @param[in] audio_track The <code>PP_Resource</code> to check.
136 PP_Var GetId([in] PP_Resource audio_track);
143 * @param[in] audio_track The <code>PP_Resource</code> to check.
149 PP_Bool HasEnded([in] PP_Resource audio_track);
162 * @param[in] audio_track A <code>PP_Resource</code> corresponding to an audio
171 int32_t GetBuffer([in] PP_Resource audio_track,
[all...]
/external/chromium_org/ppapi/thunk/
H A Dppb_media_stream_audio_track_thunk.cc26 int32_t Configure(PP_Resource audio_track, argument
30 EnterResource<PPB_MediaStreamAudioTrack_API> enter(audio_track,
39 int32_t GetAttrib(PP_Resource audio_track, argument
43 EnterResource<PPB_MediaStreamAudioTrack_API> enter(audio_track, true);
49 struct PP_Var GetId(PP_Resource audio_track) { argument
51 EnterResource<PPB_MediaStreamAudioTrack_API> enter(audio_track, true);
57 PP_Bool HasEnded(PP_Resource audio_track) { argument
59 EnterResource<PPB_MediaStreamAudioTrack_API> enter(audio_track, true);
65 int32_t GetBuffer(PP_Resource audio_track, argument
69 EnterResource<PPB_MediaStreamAudioTrack_API> enter(audio_track,
77 RecycleBuffer(PP_Resource audio_track, PP_Resource buffer) argument
85 Close(PP_Resource audio_track) argument
[all...]
/external/chromium_org/content/public/renderer/
H A Dmedia_stream_audio_sink.cc26 WebRtcLocalAudioTrack* audio_track = local
28 audio_track->AddSink(sink);
41 WebRtcLocalAudioTrack* audio_track = local
43 audio_track->RemoveSink(sink);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dmediastream_unittest.cc116 scoped_refptr<webrtc::MediaStreamTrackInterface> audio_track(
118 EXPECT_EQ(0, audio_track->id().compare(kAudioTrackId));
119 EXPECT_TRUE(audio_track->enabled());
121 EXPECT_TRUE(stream_->GetAudioTracks()[0].get() == audio_track.get());
122 EXPECT_TRUE(stream_->FindAudioTrack(audio_track->id()).get()
123 == audio_track.get());
124 audio_track = stream_->GetAudioTracks()[0];
125 EXPECT_EQ(0, audio_track->id().compare(kAudioTrackId));
126 EXPECT_TRUE(audio_track->enabled());
158 scoped_refptr<webrtc::AudioTrackInterface> audio_track(
[all...]
H A Dstatscollector.h62 void AddLocalAudioTrack(AudioTrackInterface* audio_track, uint32 ssrc);
66 void RemoveLocalAudioTrack(AudioTrackInterface* audio_track, uint32 ssrc);
H A Dmediastreamhandler.cc286 void LocalMediaStreamHandler::AddAudioTrack(AudioTrackInterface* audio_track, argument
288 ASSERT(!FindTrackHandler(audio_track));
290 TrackHandler* handler(new LocalAudioTrackHandler(audio_track, ssrc,
314 void RemoteMediaStreamHandler::AddAudioTrack(AudioTrackInterface* audio_track, argument
316 ASSERT(!FindTrackHandler(audio_track));
318 new RemoteAudioTrackHandler(audio_track, ssrc, audio_provider_));
364 AudioTrackInterface* audio_track,
371 handler->AddAudioTrack(audio_track, ssrc);
406 AudioTrackInterface* audio_track,
413 handler->AddAudioTrack(audio_track, ssr
362 AddRemoteAudioTrack( MediaStreamInterface* stream, AudioTrackInterface* audio_track, uint32 ssrc) argument
404 AddLocalAudioTrack( MediaStreamInterface* stream, AudioTrackInterface* audio_track, uint32 ssrc) argument
[all...]
H A Dmediastreamhandler.h191 virtual void AddAudioTrack(AudioTrackInterface* audio_track, uint32 ssrc) = 0;
213 virtual void AddAudioTrack(AudioTrackInterface* audio_track,
225 virtual void AddAudioTrack(AudioTrackInterface* audio_track,
249 // Create a RemoteAudioTrackHandler and associate |audio_track| with |ssrc|.
251 AudioTrackInterface* audio_track,
266 // Create a LocalAudioTrackHandler and associate |audio_track| with |ssrc|.
268 AudioTrackInterface* audio_track,
H A Dmediastreamsignaling.h68 AudioTrackInterface* audio_track,
78 AudioTrackInterface* audio_track) = 0;
86 AudioTrackInterface* audio_track,
96 AudioTrackInterface* audio_track,
H A Dpeerconnection.h126 AudioTrackInterface* audio_track,
133 AudioTrackInterface* audio_track) OVERRIDE;
138 AudioTrackInterface* audio_track,
145 AudioTrackInterface* audio_track,
H A Dmediastreamsignaling.cc649 AudioTrackInterface* audio_track = local
651 stream_observer_->OnAddRemoteAudioTrack(stream, audio_track, ssrc);
668 rtc::scoped_refptr<AudioTrackInterface> audio_track = local
670 if (audio_track) {
671 audio_track->set_state(webrtc::MediaStreamTrackInterface::kEnded);
672 stream->RemoveTrack(audio_track);
673 stream_observer_->OnRemoveRemoteAudioTrack(stream, audio_track);
835 AudioTrackInterface* audio_track = stream->FindAudioTrack(track_id); local
836 if (!audio_track) {
841 stream_observer_->OnAddLocalAudioTrack(stream, audio_track, ssr
871 AudioTrackInterface* audio_track = stream->FindAudioTrack(track_id); local
[all...]
H A Dpeerconnection.cc788 AudioTrackInterface* audio_track,
790 stream_handler_container_->AddRemoteAudioTrack(stream, audio_track, ssrc);
801 AudioTrackInterface* audio_track) {
802 stream_handler_container_->RemoveRemoteTrack(stream, audio_track);
811 AudioTrackInterface* audio_track,
813 stream_handler_container_->AddLocalAudioTrack(stream, audio_track, ssrc);
814 stats_->AddLocalAudioTrack(audio_track, ssrc);
823 AudioTrackInterface* audio_track,
825 stream_handler_container_->RemoveLocalTrack(stream, audio_track);
826 stats_->RemoveLocalAudioTrack(audio_track, ssr
787 OnAddRemoteAudioTrack(MediaStreamInterface* stream, AudioTrackInterface* audio_track, uint32 ssrc) argument
799 OnRemoveRemoteAudioTrack( MediaStreamInterface* stream, AudioTrackInterface* audio_track) argument
810 OnAddLocalAudioTrack(MediaStreamInterface* stream, AudioTrackInterface* audio_track, uint32 ssrc) argument
822 OnRemoveLocalAudioTrack(MediaStreamInterface* stream, AudioTrackInterface* audio_track, uint32 ssrc) argument
[all...]
H A Dmediastreamsignaling_unittest.cc314 AudioTrackInterface* audio_track,
316 AddTrack(&local_audio_tracks_, stream, audio_track, ssrc);
326 AudioTrackInterface* audio_track,
328 RemoveTrack(&local_audio_tracks_, stream, audio_track);
337 AudioTrackInterface* audio_track,
339 AddTrack(&remote_audio_tracks_, stream, audio_track, ssrc);
349 AudioTrackInterface* audio_track) {
350 RemoveTrack(&remote_audio_tracks_, stream, audio_track);
506 rtc::scoped_refptr<webrtc::AudioTrackInterface> audio_track(
508 stream->AddTrack(audio_track);
313 OnAddLocalAudioTrack(MediaStreamInterface* stream, AudioTrackInterface* audio_track, uint32 ssrc) argument
325 OnRemoveLocalAudioTrack(MediaStreamInterface* stream, AudioTrackInterface* audio_track, uint32 ssrc) argument
336 OnAddRemoteAudioTrack(MediaStreamInterface* stream, AudioTrackInterface* audio_track, uint32 ssrc) argument
348 OnRemoveRemoteAudioTrack(MediaStreamInterface* stream, AudioTrackInterface* audio_track) argument
[all...]
H A Dstatscollector.cc572 void StatsCollector::AddLocalAudioTrack(AudioTrackInterface* audio_track, argument
574 ASSERT(audio_track != NULL);
577 ASSERT(it->first != audio_track || it->second != ssrc);
580 local_audio_tracks_.push_back(std::make_pair(audio_track, ssrc));
585 StatsId(StatsReport::kStatsReportTypeTrack, audio_track->id()));
587 AddTrackReport(&reports_, audio_track->id());
590 void StatsCollector::RemoveLocalAudioTrack(AudioTrackInterface* audio_track, argument
592 ASSERT(audio_track != NULL);
595 if (it->first == audio_track && it->second == ssrc) {
H A Dpeerconnectioninterface_unittest.cc337 scoped_refptr<AudioTrackInterface> audio_track(
339 stream->AddTrack(audio_track.get());
351 scoped_refptr<AudioTrackInterface> audio_track(
354 stream->AddTrack(audio_track.get());
578 scoped_refptr<AudioTrackInterface> audio_track(
581 stream->AddTrack(audio_track.get());
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
H A Dfakemediastreamsignaling.h96 webrtc::AudioTrackInterface* audio_track,
104 webrtc::AudioTrackInterface* audio_track,
115 webrtc::AudioTrackInterface* audio_track) {
125 webrtc::AudioTrackInterface* audio_track,
144 rtc::scoped_refptr<webrtc::AudioTrackInterface> audio_track(
146 stream->AddTrack(audio_track);
95 OnAddLocalAudioTrack(webrtc::MediaStreamInterface* stream, webrtc::AudioTrackInterface* audio_track, uint32 ssrc) argument
103 OnAddRemoteAudioTrack(webrtc::MediaStreamInterface* stream, webrtc::AudioTrackInterface* audio_track, uint32 ssrc) argument
113 OnRemoveRemoteAudioTrack( webrtc::MediaStreamInterface* stream, webrtc::AudioTrackInterface* audio_track) argument
123 OnRemoveLocalAudioTrack( webrtc::MediaStreamInterface* stream, webrtc::AudioTrackInterface* audio_track, uint32 ssrc) argument
H A Dpeerconnectiontestwrapper.cc38 static const char kAudioTrackLabelBase[] = "audio_track";
276 rtc::scoped_refptr<webrtc::AudioTrackInterface> audio_track(
279 stream->AddTrack(audio_track);
/external/chromium_org/content/renderer/media/
H A Dremote_media_stream_impl.cc166 webrtc::AudioTrackInterface* audio_track = webrtc_audio_tracks[i]; local
167 DCHECK(audio_track);
168 InitializeWebkitTrack(audio_track, &webkit_audio_tracks[i],
171 new RemoteAudioMediaStreamTrackAdapter(audio_track,
H A Dmedia_stream_renderer_factory.cc85 const blink::WebMediaStreamTrack& audio_track,
100 audio_track,
84 CreateLocalAudioRenderer( const blink::WebMediaStreamTrack& audio_track, int routing_id, int render_frame_id) argument
H A Dwebrtc_local_audio_renderer.h53 WebRtcLocalAudioRenderer(const blink::WebMediaStreamTrack& audio_track,
H A Dwebrtc_local_audio_renderer.cc104 const blink::WebMediaStreamTrack& audio_track,
109 : audio_track_(audio_track),
103 WebRtcLocalAudioRenderer( const blink::WebMediaStreamTrack& audio_track, int source_render_view_id, int source_render_frame_id, int session_id, int frames_per_buffer) argument
H A Duser_media_client_impl_unittest.cc331 MediaStreamTrack* audio_track = MediaStreamTrack::GetTrack(audio_tracks[0]); local
332 audio_track->Stop();
478 MediaStreamTrack* audio_track = MediaStreamTrack::GetTrack(audio_tracks[0]); local
479 audio_track->Stop();
/external/chromium_org/content/renderer/media/webrtc/
H A Dpeer_connection_dependency_factory.cc455 scoped_ptr<WebRtcLocalAudioTrack> audio_track(new WebRtcLocalAudioTrack(
458 StartLocalAudioTrack(audio_track.get());
462 writable_track.setExtraData(audio_track.release());
466 WebRtcLocalAudioTrack* audio_track) {
471 audio_track->AddSink(GetWebRtcAudioDevice());
473 // Start the audio track. This will hook the |audio_track| to the capturer
476 audio_track->Start();
465 StartLocalAudioTrack( WebRtcLocalAudioTrack* audio_track) argument
H A Dpeer_connection_dependency_factory.h175 virtual void StartLocalAudioTrack(WebRtcLocalAudioTrack* audio_track);
H A Dmock_peer_connection_dependency_factory.cc536 WebRtcLocalAudioTrack* audio_track) {
537 audio_track->Start();
535 StartLocalAudioTrack( WebRtcLocalAudioTrack* audio_track) argument

Completed in 926 milliseconds

12