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 #include "avfoundationvideocapturer.h" | 11 #include "avfoundationvideocapturer.h" |
12 | 12 |
13 #import <AVFoundation/AVFoundation.h> | 13 #import <AVFoundation/AVFoundation.h> |
14 | 14 |
15 #import "RTCAVFoundationVideoCapturerInternal.h" | 15 #import "RTCAVFoundationVideoCapturerInternal.h" |
16 #import "RTCDispatcher+Private.h" | 16 #import "RTCDispatcher+Private.h" |
17 #import "WebRTC/RTCLogging.h" | 17 #import "WebRTC/RTCLogging.h" |
18 #import "WebRTC/RTCVideoFrameBuffer.h" | 18 #import "WebRTC/RTCVideoFrameBuffer.h" |
19 | 19 |
20 #include "avfoundationformatmapper.h" | 20 #include "avfoundationformatmapper.h" |
21 | 21 |
22 #include "webrtc/api/video/video_rotation.h" | 22 #include "webrtc/api/video/video_rotation.h" |
23 #include "webrtc/base/bind.h" | 23 #include "webrtc/rtc_base/bind.h" |
24 #include "webrtc/base/checks.h" | 24 #include "webrtc/rtc_base/checks.h" |
25 #include "webrtc/base/logging.h" | 25 #include "webrtc/rtc_base/logging.h" |
26 #include "webrtc/base/thread.h" | 26 #include "webrtc/rtc_base/thread.h" |
27 #include "webrtc/sdk/objc/Framework/Classes/Video/objc_frame_buffer.h" | 27 #include "webrtc/sdk/objc/Framework/Classes/Video/objc_frame_buffer.h" |
28 | 28 |
29 namespace webrtc { | 29 namespace webrtc { |
30 | 30 |
31 enum AVFoundationVideoCapturerMessageType : uint32_t { | 31 enum AVFoundationVideoCapturerMessageType : uint32_t { |
32 kMessageTypeFrame, | 32 kMessageTypeFrame, |
33 }; | 33 }; |
34 | 34 |
35 AVFoundationVideoCapturer::AVFoundationVideoCapturer() : _capturer(nil) { | 35 AVFoundationVideoCapturer::AVFoundationVideoCapturer() : _capturer(nil) { |
36 _capturer = | 36 _capturer = |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 } | 170 } |
171 | 171 |
172 rotation = kVideoRotation_0; | 172 rotation = kVideoRotation_0; |
173 } | 173 } |
174 | 174 |
175 OnFrame(webrtc::VideoFrame(buffer, rotation, translated_camera_time_us), | 175 OnFrame(webrtc::VideoFrame(buffer, rotation, translated_camera_time_us), |
176 captured_width, captured_height); | 176 captured_width, captured_height); |
177 } | 177 } |
178 | 178 |
179 } // namespace webrtc | 179 } // namespace webrtc |
OLD | NEW |