OLD | NEW |
1 /* | 1 /* |
2 * libjingle | 2 * libjingle |
3 * Copyright 2013 Google Inc. | 3 * Copyright 2013 Google Inc. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
(...skipping 13 matching lines...) Expand all Loading... |
24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | 24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 */ | 26 */ |
27 | 27 |
28 #if !defined(__has_feature) || !__has_feature(objc_arc) | 28 #if !defined(__has_feature) || !__has_feature(objc_arc) |
29 #error "This file requires ARC support." | 29 #error "This file requires ARC support." |
30 #endif | 30 #endif |
31 | 31 |
32 #import "RTCVideoTrack+Internal.h" | 32 #import "RTCVideoTrack+Internal.h" |
33 | 33 |
| 34 #import "RTCMediaSource+Internal.h" |
34 #import "RTCMediaStreamTrack+Internal.h" | 35 #import "RTCMediaStreamTrack+Internal.h" |
35 #import "RTCPeerConnectionFactory+Internal.h" | 36 #import "RTCPeerConnectionFactory+Internal.h" |
36 #import "RTCVideoRendererAdapter.h" | 37 #import "RTCVideoRendererAdapter.h" |
37 #import "RTCMediaSource+Internal.h" | |
38 #import "RTCVideoSource+Internal.h" | 38 #import "RTCVideoSource+Internal.h" |
39 | 39 |
40 @implementation RTCVideoTrack { | 40 @implementation RTCVideoTrack { |
41 NSMutableArray* _adapters; | 41 NSMutableArray* _adapters; |
42 } | 42 } |
43 | 43 |
44 @synthesize source = _source; | 44 @synthesize source = _source; |
45 | 45 |
46 - (instancetype)initWithFactory:(RTCPeerConnectionFactory*)factory | 46 - (instancetype)initWithFactory:(RTCPeerConnectionFactory*)factory |
47 source:(RTCVideoSource*)source | 47 source:(RTCVideoSource*)source |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 | 113 |
114 @end | 114 @end |
115 | 115 |
116 @implementation RTCVideoTrack (Internal) | 116 @implementation RTCVideoTrack (Internal) |
117 | 117 |
118 - (rtc::scoped_refptr<webrtc::VideoTrackInterface>)nativeVideoTrack { | 118 - (rtc::scoped_refptr<webrtc::VideoTrackInterface>)nativeVideoTrack { |
119 return static_cast<webrtc::VideoTrackInterface*>(self.mediaTrack.get()); | 119 return static_cast<webrtc::VideoTrackInterface*>(self.mediaTrack.get()); |
120 } | 120 } |
121 | 121 |
122 @end | 122 @end |
OLD | NEW |