OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2011 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/videotrack.h" | 11 #include "webrtc/api/videotrack.h" |
12 | 12 |
13 #include <string> | 13 #include <string> |
14 | 14 |
15 namespace webrtc { | 15 namespace webrtc { |
16 | 16 |
17 const char MediaStreamTrackInterface::kVideoKind[] = "video"; | 17 const char MediaStreamTrackInterface::kVideoKind[] = "video"; |
18 | 18 |
19 VideoTrack::VideoTrack(const std::string& label, | 19 VideoTrack::VideoTrack(const std::string& label, |
20 VideoTrackSourceInterface* video_source) | 20 VideoTrackSourceInterface* video_source) |
21 : MediaStreamTrack<VideoTrackInterface>(label), | 21 : MediaStreamTrack<VideoTrackInterface>(label), |
22 video_source_(video_source) { | 22 video_source_(video_source) { |
| 23 worker_thread_checker_.DetachFromThread(); |
23 video_source_->RegisterObserver(this); | 24 video_source_->RegisterObserver(this); |
24 } | 25 } |
25 | 26 |
26 VideoTrack::~VideoTrack() { | 27 VideoTrack::~VideoTrack() { |
27 video_source_->UnregisterObserver(this); | 28 video_source_->UnregisterObserver(this); |
28 } | 29 } |
29 | 30 |
30 std::string VideoTrack::kind() const { | 31 std::string VideoTrack::kind() const { |
31 return kVideoKind; | 32 return kVideoKind; |
32 } | 33 } |
33 | 34 |
| 35 // AddOrUpdateSink and RemoveSink should be called on the worker |
| 36 // thread. |
34 void VideoTrack::AddOrUpdateSink( | 37 void VideoTrack::AddOrUpdateSink( |
35 rtc::VideoSinkInterface<cricket::VideoFrame>* sink, | 38 rtc::VideoSinkInterface<cricket::VideoFrame>* sink, |
36 const rtc::VideoSinkWants& wants) { | 39 const rtc::VideoSinkWants& wants) { |
37 RTC_DCHECK(thread_checker_.CalledOnValidThread()); | 40 RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); |
38 VideoSourceBase::AddOrUpdateSink(sink, wants); | 41 VideoSourceBase::AddOrUpdateSink(sink, wants); |
39 rtc::VideoSinkWants modified_wants = wants; | 42 rtc::VideoSinkWants modified_wants = wants; |
40 modified_wants.black_frames = !enabled(); | 43 modified_wants.black_frames = !enabled(); |
41 video_source_->AddOrUpdateSink(sink, modified_wants); | 44 video_source_->AddOrUpdateSink(sink, modified_wants); |
42 } | 45 } |
43 | 46 |
44 void VideoTrack::RemoveSink( | 47 void VideoTrack::RemoveSink( |
45 rtc::VideoSinkInterface<cricket::VideoFrame>* sink) { | 48 rtc::VideoSinkInterface<cricket::VideoFrame>* sink) { |
46 RTC_DCHECK(thread_checker_.CalledOnValidThread()); | 49 RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); |
47 VideoSourceBase::RemoveSink(sink); | 50 VideoSourceBase::RemoveSink(sink); |
48 video_source_->RemoveSink(sink); | 51 video_source_->RemoveSink(sink); |
49 } | 52 } |
50 | 53 |
51 bool VideoTrack::set_enabled(bool enable) { | 54 bool VideoTrack::set_enabled(bool enable) { |
52 RTC_DCHECK(thread_checker_.CalledOnValidThread()); | 55 RTC_DCHECK(signaling_thread_checker_.CalledOnValidThread()); |
53 for (auto& sink_pair : sink_pairs()) { | 56 for (auto& sink_pair : sink_pairs()) { |
54 rtc::VideoSinkWants modified_wants = sink_pair.wants; | 57 rtc::VideoSinkWants modified_wants = sink_pair.wants; |
55 modified_wants.black_frames = !enable; | 58 modified_wants.black_frames = !enable; |
| 59 // video_source_ is a proxy object, marshalling the call to the |
| 60 // worker thread. |
56 video_source_->AddOrUpdateSink(sink_pair.sink, modified_wants); | 61 video_source_->AddOrUpdateSink(sink_pair.sink, modified_wants); |
57 } | 62 } |
58 return MediaStreamTrack<VideoTrackInterface>::set_enabled(enable); | 63 return MediaStreamTrack<VideoTrackInterface>::set_enabled(enable); |
59 } | 64 } |
60 | 65 |
61 void VideoTrack::OnChanged() { | 66 void VideoTrack::OnChanged() { |
62 RTC_DCHECK(thread_checker_.CalledOnValidThread()); | 67 RTC_DCHECK(signaling_thread_checker_.CalledOnValidThread()); |
63 if (video_source_->state() == MediaSourceInterface::kEnded) { | 68 if (video_source_->state() == MediaSourceInterface::kEnded) { |
64 set_state(kEnded); | 69 set_state(kEnded); |
65 } else { | 70 } else { |
66 set_state(kLive); | 71 set_state(kLive); |
67 } | 72 } |
68 } | 73 } |
69 | 74 |
70 rtc::scoped_refptr<VideoTrack> VideoTrack::Create( | 75 rtc::scoped_refptr<VideoTrack> VideoTrack::Create( |
71 const std::string& id, | 76 const std::string& id, |
72 VideoTrackSourceInterface* source) { | 77 VideoTrackSourceInterface* source) { |
73 rtc::RefCountedObject<VideoTrack>* track = | 78 rtc::RefCountedObject<VideoTrack>* track = |
74 new rtc::RefCountedObject<VideoTrack>(id, source); | 79 new rtc::RefCountedObject<VideoTrack>(id, source); |
75 return track; | 80 return track; |
76 } | 81 } |
77 | 82 |
78 } // namespace webrtc | 83 } // namespace webrtc |
OLD | NEW |