| 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 VideoSourceInterface* 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 | 23 // TODO(perkj): Sinks should register directly to the source so that |
| 24 // VideoSinkWants can be applied correctly per sink. For now, |renderers_| | 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, | 25 // must be able to apply rotation. Note that this is only actual renderers, |
| 26 // not sinks that connect directly to cricket::VideoCapture. | 26 // not sinks that connect directly to cricket::VideoCapture. |
| 27 rtc::VideoSinkWants wants; | 27 rtc::VideoSinkWants wants; |
| 28 wants.rotation_applied = false; | 28 wants.rotation_applied = false; |
| 29 if (video_source_) | 29 if (video_source_) |
| 30 video_source_->AddOrUpdateSink(&renderers_, wants); | 30 video_source_->AddOrUpdateSink(&renderers_, wants); |
| (...skipping 23 matching lines...) Expand all Loading... |
| 54 return &renderers_; | 54 return &renderers_; |
| 55 } | 55 } |
| 56 | 56 |
| 57 bool VideoTrack::set_enabled(bool enable) { | 57 bool VideoTrack::set_enabled(bool enable) { |
| 58 renderers_.SetEnabled(enable); | 58 renderers_.SetEnabled(enable); |
| 59 return MediaStreamTrack<VideoTrackInterface>::set_enabled(enable); | 59 return MediaStreamTrack<VideoTrackInterface>::set_enabled(enable); |
| 60 } | 60 } |
| 61 | 61 |
| 62 rtc::scoped_refptr<VideoTrack> VideoTrack::Create( | 62 rtc::scoped_refptr<VideoTrack> VideoTrack::Create( |
| 63 const std::string& id, | 63 const std::string& id, |
| 64 VideoSourceInterface* source) { | 64 VideoTrackSourceInterface* source) { |
| 65 rtc::RefCountedObject<VideoTrack>* track = | 65 rtc::RefCountedObject<VideoTrack>* track = |
| 66 new rtc::RefCountedObject<VideoTrack>(id, source); | 66 new rtc::RefCountedObject<VideoTrack>(id, source); |
| 67 return track; | 67 return track; |
| 68 } | 68 } |
| 69 | 69 |
| 70 } // namespace webrtc | 70 } // namespace webrtc |
| OLD | NEW |