Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Side by Side Diff: webrtc/api/rtpreceiver.cc

Issue 1861633002: Extended proxy abstraction, to call certain methods to the worker thread. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/api/proxy.h ('k') | webrtc/api/test/fakevideotracksource.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2015 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include "webrtc/api/rtpreceiver.h" 11 #include "webrtc/api/rtpreceiver.h"
12 12
13 #include "webrtc/api/mediastreamtrackproxy.h" 13 #include "webrtc/api/mediastreamtrackproxy.h"
14 #include "webrtc/api/audiotrack.h" 14 #include "webrtc/api/audiotrack.h"
15 #include "webrtc/api/videosourceproxy.h"
15 #include "webrtc/api/videotrack.h" 16 #include "webrtc/api/videotrack.h"
16 17
17 namespace webrtc { 18 namespace webrtc {
18 19
19 AudioRtpReceiver::AudioRtpReceiver(MediaStreamInterface* stream, 20 AudioRtpReceiver::AudioRtpReceiver(MediaStreamInterface* stream,
20 const std::string& track_id, 21 const std::string& track_id,
21 uint32_t ssrc, 22 uint32_t ssrc,
22 AudioProviderInterface* provider) 23 AudioProviderInterface* provider)
23 : id_(track_id), 24 : id_(track_id),
24 ssrc_(ssrc), 25 ssrc_(ssrc),
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 75
75 VideoRtpReceiver::VideoRtpReceiver(MediaStreamInterface* stream, 76 VideoRtpReceiver::VideoRtpReceiver(MediaStreamInterface* stream,
76 const std::string& track_id, 77 const std::string& track_id,
77 rtc::Thread* worker_thread, 78 rtc::Thread* worker_thread,
78 uint32_t ssrc, 79 uint32_t ssrc,
79 VideoProviderInterface* provider) 80 VideoProviderInterface* provider)
80 : id_(track_id), 81 : id_(track_id),
81 ssrc_(ssrc), 82 ssrc_(ssrc),
82 provider_(provider), 83 provider_(provider),
83 source_(new RefCountedObject<VideoTrackSource>(&broadcaster_, 84 source_(new RefCountedObject<VideoTrackSource>(&broadcaster_,
84 worker_thread,
85 true /* remote */)), 85 true /* remote */)),
86 track_(VideoTrackProxy::Create( 86 track_(VideoTrackProxy::Create(
87 rtc::Thread::Current(), 87 rtc::Thread::Current(),
88 VideoTrack::Create(track_id, source_.get()))) { 88 worker_thread,
89 VideoTrack::Create(
90 track_id,
91 VideoTrackSourceProxy::Create(rtc::Thread::Current(),
92 worker_thread,
93 source_)))) {
89 source_->SetState(MediaSourceInterface::kLive); 94 source_->SetState(MediaSourceInterface::kLive);
90 provider_->SetVideoPlayout(ssrc_, true, &broadcaster_); 95 provider_->SetVideoPlayout(ssrc_, true, &broadcaster_);
91 stream->AddTrack(track_); 96 stream->AddTrack(track_);
92 } 97 }
93 98
94 VideoRtpReceiver::~VideoRtpReceiver() { 99 VideoRtpReceiver::~VideoRtpReceiver() {
95 // Since cricket::VideoRenderer is not reference counted, 100 // Since cricket::VideoRenderer is not reference counted,
96 // we need to remove it from the provider before we are deleted. 101 // we need to remove it from the provider before we are deleted.
97 Stop(); 102 Stop();
98 } 103 }
99 104
100 void VideoRtpReceiver::Stop() { 105 void VideoRtpReceiver::Stop() {
101 // TODO(deadbeef): Need to do more here to fully stop receiving packets. 106 // TODO(deadbeef): Need to do more here to fully stop receiving packets.
102 if (!provider_) { 107 if (!provider_) {
103 return; 108 return;
104 } 109 }
105 source_->SetState(MediaSourceInterface::kEnded); 110 source_->SetState(MediaSourceInterface::kEnded);
106 source_->OnSourceDestroyed(); 111 source_->OnSourceDestroyed();
107 provider_->SetVideoPlayout(ssrc_, false, nullptr); 112 provider_->SetVideoPlayout(ssrc_, false, nullptr);
108 provider_ = nullptr; 113 provider_ = nullptr;
109 } 114 }
110 115
111 } // namespace webrtc 116 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/api/proxy.h ('k') | webrtc/api/test/fakevideotracksource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698