OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2015 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 #import "RTCVideoSource+Private.h" | 11 #import "RTCVideoSource+Private.h" |
12 | 12 |
13 #include "webrtc/api/videosourceproxy.h" | 13 #include "webrtc/api/videosourceproxy.h" |
14 #include "webrtc/base/checks.h" | 14 #include "webrtc/rtc_base/checks.h" |
15 #include "webrtc/sdk/objc/Framework/Classes/Video/objcvideotracksource.h" | 15 #include "webrtc/sdk/objc/Framework/Classes/Video/objcvideotracksource.h" |
16 | 16 |
17 static webrtc::ObjcVideoTrackSource *getObjcVideoSource( | 17 static webrtc::ObjcVideoTrackSource *getObjcVideoSource( |
18 const rtc::scoped_refptr<webrtc::VideoTrackSourceInterface> nativeSource) { | 18 const rtc::scoped_refptr<webrtc::VideoTrackSourceInterface> nativeSource) { |
19 webrtc::VideoTrackSourceProxy *proxy_source = | 19 webrtc::VideoTrackSourceProxy *proxy_source = |
20 static_cast<webrtc::VideoTrackSourceProxy *>(nativeSource.get()); | 20 static_cast<webrtc::VideoTrackSourceProxy *>(nativeSource.get()); |
21 return static_cast<webrtc::ObjcVideoTrackSource *>(proxy_source->internal()); | 21 return static_cast<webrtc::ObjcVideoTrackSource *>(proxy_source->internal()); |
22 } | 22 } |
23 | 23 |
24 // TODO(magjed): Refactor this class and target ObjcVideoTrackSource only once | 24 // TODO(magjed): Refactor this class and target ObjcVideoTrackSource only once |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 getObjcVideoSource(_nativeVideoSource)->OnOutputFormatRequest(width, height, f
ps); | 58 getObjcVideoSource(_nativeVideoSource)->OnOutputFormatRequest(width, height, f
ps); |
59 } | 59 } |
60 | 60 |
61 #pragma mark - Private | 61 #pragma mark - Private |
62 | 62 |
63 - (rtc::scoped_refptr<webrtc::VideoTrackSourceInterface>)nativeVideoSource { | 63 - (rtc::scoped_refptr<webrtc::VideoTrackSourceInterface>)nativeVideoSource { |
64 return _nativeVideoSource; | 64 return _nativeVideoSource; |
65 } | 65 } |
66 | 66 |
67 @end | 67 @end |
OLD | NEW |