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/pc/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), |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 | 72 |
73 rtc::scoped_refptr<VideoTrack> VideoTrack::Create( | 73 rtc::scoped_refptr<VideoTrack> VideoTrack::Create( |
74 const std::string& id, | 74 const std::string& id, |
75 VideoTrackSourceInterface* source) { | 75 VideoTrackSourceInterface* source) { |
76 rtc::RefCountedObject<VideoTrack>* track = | 76 rtc::RefCountedObject<VideoTrack>* track = |
77 new rtc::RefCountedObject<VideoTrack>(id, source); | 77 new rtc::RefCountedObject<VideoTrack>(id, source); |
78 return track; | 78 return track; |
79 } | 79 } |
80 | 80 |
81 } // namespace webrtc | 81 } // namespace webrtc |
OLD | NEW |