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

1 2

  /external/chromium_org/ppapi/c/
ppb_media_stream_audio_track.h 112 * @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/
ppb_media_stream_audio_track.idl 97 * @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/
ppb_media_stream_audio_track_thunk.cc 26 int32_t Configure(PP_Resource audio_track,
30 EnterResource<PPB_MediaStreamAudioTrack_API> enter(audio_track,
39 int32_t GetAttrib(PP_Resource audio_track,
43 EnterResource<PPB_MediaStreamAudioTrack_API> enter(audio_track, true);
49 struct PP_Var GetId(PP_Resource audio_track) {
51 EnterResource<PPB_MediaStreamAudioTrack_API> enter(audio_track, true);
57 PP_Bool HasEnded(PP_Resource audio_track) {
59 EnterResource<PPB_MediaStreamAudioTrack_API> enter(audio_track, true);
65 int32_t GetBuffer(PP_Resource audio_track,
69 EnterResource<PPB_MediaStreamAudioTrack_API> enter(audio_track,
    [all...]
  /external/chromium_org/content/public/renderer/
media_stream_audio_sink.cc 22 WebRtcLocalAudioTrack* audio_track = local
24 audio_track->AddSink(sink);
33 WebRtcLocalAudioTrack* audio_track = local
35 audio_track->RemoveSink(sink);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
mediastream_unittest.cc 116 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...]
mediastreamhandler.h 191 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,
peerconnection.h 124 AudioTrackInterface* audio_track,
131 AudioTrackInterface* audio_track) OVERRIDE;
136 AudioTrackInterface* audio_track,
143 AudioTrackInterface* audio_track,
statscollector.h 67 void AddLocalAudioTrack(AudioTrackInterface* audio_track, uint32 ssrc);
71 void RemoveLocalAudioTrack(AudioTrackInterface* audio_track, uint32 ssrc);
mediastreamhandler.cc 286 void LocalMediaStreamHandler::AddAudioTrack(AudioTrackInterface* audio_track,
288 ASSERT(!FindTrackHandler(audio_track));
290 TrackHandler* handler(new LocalAudioTrackHandler(audio_track, ssrc,
314 void RemoteMediaStreamHandler::AddAudioTrack(AudioTrackInterface* audio_track,
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, ssrc)
    [all...]
mediastreamsignaling.h 68 AudioTrackInterface* audio_track,
78 AudioTrackInterface* audio_track) = 0;
86 AudioTrackInterface* audio_track,
96 AudioTrackInterface* audio_track,
mediastreamsignaling.cc 621 AudioTrackInterface* audio_track = local
623 stream_observer_->OnAddRemoteAudioTrack(stream, audio_track, ssrc);
640 talk_base::scoped_refptr<AudioTrackInterface> audio_track = local
642 if (audio_track) {
643 audio_track->set_state(webrtc::MediaStreamTrackInterface::kEnded);
644 stream->RemoveTrack(audio_track);
645 stream_observer_->OnRemoveRemoteAudioTrack(stream, audio_track);
807 AudioTrackInterface* audio_track = stream->FindAudioTrack(track_id); local
808 if (!audio_track) {
813 stream_observer_->OnAddLocalAudioTrack(stream, audio_track, ssrc)
843 AudioTrackInterface* audio_track = stream->FindAudioTrack(track_id); local
    [all...]
peerconnection.cc 731 AudioTrackInterface* audio_track,
733 stream_handler_container_->AddRemoteAudioTrack(stream, audio_track, ssrc);
744 AudioTrackInterface* audio_track) {
745 stream_handler_container_->RemoveRemoteTrack(stream, audio_track);
754 AudioTrackInterface* audio_track,
756 stream_handler_container_->AddLocalAudioTrack(stream, audio_track, ssrc);
757 stats_.AddLocalAudioTrack(audio_track, ssrc);
766 AudioTrackInterface* audio_track,
768 stream_handler_container_->RemoveLocalTrack(stream, audio_track);
769 stats_.RemoveLocalAudioTrack(audio_track, ssrc)
    [all...]
mediastreamsignaling_unittest.cc 289 AudioTrackInterface* audio_track,
291 AddTrack(&local_audio_tracks_, stream, audio_track, ssrc);
301 AudioTrackInterface* audio_track,
303 RemoveTrack(&local_audio_tracks_, stream, audio_track);
312 AudioTrackInterface* audio_track,
314 AddTrack(&remote_audio_tracks_, stream, audio_track, ssrc);
324 AudioTrackInterface* audio_track) {
325 RemoveTrack(&remote_audio_tracks_, stream, audio_track);
481 talk_base::scoped_refptr<webrtc::AudioTrackInterface> audio_track(
483 stream->AddTrack(audio_track);
    [all...]
statscollector.cc 538 void StatsCollector::AddLocalAudioTrack(AudioTrackInterface* audio_track,
540 ASSERT(audio_track != NULL);
544 ASSERT(it->first != audio_track || it->second != ssrc);
547 local_audio_tracks_.push_back(std::make_pair(audio_track, ssrc));
550 void StatsCollector::RemoveLocalAudioTrack(AudioTrackInterface* audio_track,
552 ASSERT(audio_track != NULL);
555 if (it->first == audio_track && it->second == ssrc) {
    [all...]
peerconnectioninterface_unittest.cc 337 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());
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
fakemediastreamsignaling.h 96 webrtc::AudioTrackInterface* audio_track,
104 webrtc::AudioTrackInterface* audio_track,
115 webrtc::AudioTrackInterface* audio_track) {
125 webrtc::AudioTrackInterface* audio_track,
144 talk_base::scoped_refptr<webrtc::AudioTrackInterface> audio_track(
146 stream->AddTrack(audio_track);
peerconnectiontestwrapper.cc 38 static const char kAudioTrackLabelBase[] = "audio_track";
277 talk_base::scoped_refptr<webrtc::AudioTrackInterface> audio_track(
280 stream->AddTrack(audio_track);
  /external/chromium_org/content/renderer/media/
remote_media_stream_impl.cc 166 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,
webrtc_local_audio_renderer.h 53 WebRtcLocalAudioRenderer(const blink::WebMediaStreamTrack& audio_track,
media_stream_renderer_factory.cc 85 const blink::WebMediaStreamTrack& audio_track,
100 audio_track,
media_stream_impl_unittest.cc 275 MediaStreamTrack* audio_track = MediaStreamTrack::GetTrack(audio_tracks[0]); local
276 audio_track->Stop();
422 MediaStreamTrack* audio_track = MediaStreamTrack::GetTrack(audio_tracks[0]); local
423 audio_track->Stop();
webrtc_local_audio_renderer.cc 144 const blink::WebMediaStreamTrack& audio_track,
149 : audio_track_(audio_track),
  /external/chromium_org/content/renderer/media/webrtc/
peer_connection_dependency_factory.cc 444 scoped_ptr<WebRtcLocalAudioTrack> audio_track(
449 StartLocalAudioTrack(audio_track.get());
453 writable_track.setExtraData(audio_track.release());
457 WebRtcLocalAudioTrack* audio_track) {
462 audio_track->AddSink(GetWebRtcAudioDevice());
464 // Start the audio track. This will hook the |audio_track| to the capturer
467 audio_track->Start();
peer_connection_dependency_factory.h 175 virtual void StartLocalAudioTrack(WebRtcLocalAudioTrack* audio_track);
mock_peer_connection_dependency_factory.cc 537 WebRtcLocalAudioTrack* audio_track) {
538 audio_track->Start();

Completed in 537 milliseconds

1 2