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 #import <Foundation/Foundation.h> | 14 #import <Foundation/Foundation.h> |
15 #if TARGET_OS_IPHONE | 15 #if TARGET_OS_IPHONE |
16 #import <UIKit/UIKit.h> | 16 #import <UIKit/UIKit.h> |
17 #endif | 17 #endif |
18 | 18 |
19 #import "RTCDispatcher+Private.h" | 19 #import "RTCDispatcher+Private.h" |
20 #import "WebRTC/RTCLogging.h" | 20 #import "WebRTC/RTCLogging.h" |
21 #if TARGET_OS_IPHONE | 21 #if TARGET_OS_IPHONE |
22 #import "WebRTC/UIDevice+RTCDevice.h" | 22 #import "WebRTC/UIDevice+RTCDevice.h" |
23 #endif | 23 #endif |
24 | 24 |
25 #include "libyuv/rotate.h" | 25 #include "libyuv/rotate.h" |
26 | 26 |
27 #include "webrtc/base/bind.h" | 27 #include "webrtc/base/bind.h" |
28 #include "webrtc/base/checks.h" | 28 #include "webrtc/base/checks.h" |
| 29 #include "webrtc/base/logging.h" |
29 #include "webrtc/base/thread.h" | 30 #include "webrtc/base/thread.h" |
30 #include "webrtc/common_video/include/corevideo_frame_buffer.h" | 31 #include "webrtc/common_video/include/corevideo_frame_buffer.h" |
31 #include "webrtc/common_video/rotation.h" | 32 #include "webrtc/common_video/rotation.h" |
32 | 33 |
33 struct AVCaptureSessionPresetResolution { | 34 struct AVCaptureSessionPresetResolution { |
34 NSString *sessionPreset; | 35 NSString *sessionPreset; |
35 int width; | 36 int width; |
36 int height; | 37 int height; |
37 }; | 38 }; |
38 | 39 |
(...skipping 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
746 buffer = rotated_buffer; | 747 buffer = rotated_buffer; |
747 } | 748 } |
748 } | 749 } |
749 | 750 |
750 OnFrame(cricket::WebRtcVideoFrame(buffer, rotation, | 751 OnFrame(cricket::WebRtcVideoFrame(buffer, rotation, |
751 translated_camera_time_us, 0), | 752 translated_camera_time_us, 0), |
752 captured_width, captured_height); | 753 captured_width, captured_height); |
753 } | 754 } |
754 | 755 |
755 } // namespace webrtc | 756 } // namespace webrtc |
OLD | NEW |