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 // TODO(perkj): Sinks should register directly to the source so that | |
24 // VideoSinkWants can be applied correctly per sink. For now, |renderers_| | |
25 // must be able to apply rotation. Note that this is only actual renderers, | |
26 // not sinks that connect directly to cricket::VideoCapture. | |
27 rtc::VideoSinkWants wants; | |
28 wants.rotation_applied = false; | |
29 if (video_source_) | |
30 video_source_->AddOrUpdateSink(&renderers_, wants); | |
31 } | 23 } |
32 | 24 |
33 VideoTrack::~VideoTrack() { | 25 VideoTrack::~VideoTrack() { |
34 if (video_source_) | |
35 video_source_->RemoveSink(&renderers_); | |
36 } | 26 } |
37 | 27 |
38 std::string VideoTrack::kind() const { | 28 std::string VideoTrack::kind() const { |
39 return kVideoKind; | 29 return kVideoKind; |
40 } | 30 } |
41 | 31 |
42 void VideoTrack::AddOrUpdateSink( | 32 void VideoTrack::AddOrUpdateSink( |
43 rtc::VideoSinkInterface<cricket::VideoFrame>* sink, | 33 rtc::VideoSinkInterface<cricket::VideoFrame>* sink, |
44 const rtc::VideoSinkWants& wants) { | 34 const rtc::VideoSinkWants& wants) { |
45 renderers_.AddOrUpdateSink(sink, wants); | 35 RTC_DCHECK(thread_checker_.CalledOnValidThread()); |
36 SinkPair* sink_pair = FindSinkPair(sink); | |
37 if (!sink_pair) { | |
38 sinks_.push_back(SinkPair(sink, wants)); | |
39 } else { | |
40 sink_pair->wants = wants; | |
41 } | |
42 rtc::VideoSinkWants modified_wants = wants; | |
43 modified_wants.black_frames = !enabled(); | |
44 video_source_->AddOrUpdateSink(sink, modified_wants); | |
46 } | 45 } |
47 | 46 |
48 void VideoTrack::RemoveSink( | 47 void VideoTrack::RemoveSink( |
49 rtc::VideoSinkInterface<cricket::VideoFrame>* sink) { | 48 rtc::VideoSinkInterface<cricket::VideoFrame>* sink) { |
50 renderers_.RemoveSink(sink); | 49 RTC_DCHECK(thread_checker_.CalledOnValidThread()); |
50 RTC_DCHECK(FindSinkPair(sink)); | |
51 sinks_.erase(std::remove_if(sinks_.begin(), sinks_.end(), | |
52 [sink](const SinkPair& sink_pair) { | |
53 return sink_pair.sink == sink; | |
54 }), | |
55 sinks_.end()); | |
56 video_source_->RemoveSink(sink); | |
51 } | 57 } |
52 | 58 |
53 bool VideoTrack::set_enabled(bool enable) { | 59 bool VideoTrack::set_enabled(bool enable) { |
54 renderers_.SetEnabled(enable); | 60 RTC_DCHECK(thread_checker_.CalledOnValidThread()); |
61 for (auto& sink_pair : sinks_) { | |
62 rtc::VideoSinkWants modified_wants = sink_pair.wants; | |
63 modified_wants.black_frames = !enable; | |
64 video_source_->AddOrUpdateSink(sink_pair.sink, modified_wants); | |
65 } | |
55 return MediaStreamTrack<VideoTrackInterface>::set_enabled(enable); | 66 return MediaStreamTrack<VideoTrackInterface>::set_enabled(enable); |
56 } | 67 } |
57 | 68 |
69 VideoTrack::SinkPair* VideoTrack::FindSinkPair( | |
70 const rtc::VideoSinkInterface<cricket::VideoFrame>* sink) { | |
71 auto sink_pair_it = std::find_if( | |
72 sinks_.begin(), sinks_.end(), | |
73 [sink](const SinkPair& sink_pair) { return sink_pair.sink == sink; }); | |
74 if (sink_pair_it != sinks_.end()) { | |
75 return &*sink_pair_it; | |
76 } | |
77 return nullptr; | |
78 } | |
pthatcher1
2016/03/11 20:20:17
Can we make a VideoSourceBase that implements a Vi
perkj_webrtc
2016/03/11 21:44:56
Done.
| |
79 | |
58 rtc::scoped_refptr<VideoTrack> VideoTrack::Create( | 80 rtc::scoped_refptr<VideoTrack> VideoTrack::Create( |
59 const std::string& id, | 81 const std::string& id, |
60 VideoTrackSourceInterface* source) { | 82 VideoTrackSourceInterface* source) { |
61 rtc::RefCountedObject<VideoTrack>* track = | 83 rtc::RefCountedObject<VideoTrack>* track = |
62 new rtc::RefCountedObject<VideoTrack>(id, source); | 84 new rtc::RefCountedObject<VideoTrack>(id, source); |
63 return track; | 85 return track; |
64 } | 86 } |
65 | 87 |
66 } // namespace webrtc | 88 } // namespace webrtc |
OLD | NEW |