haysc | edd8fef | 2015-12-08 11:08:39 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2015 The WebRTC Project Authors. All rights reserved. |
| 3 | * |
| 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 |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
tkchin | 9eeb624 | 2016-04-27 01:54:20 -0700 | [diff] [blame] | 11 | #import "WebRTC/RTCCameraPreviewView.h" |
haysc | edd8fef | 2015-12-08 11:08:39 -0800 | [diff] [blame] | 12 | |
| 13 | #import <AVFoundation/AVFoundation.h> |
meetAkshay99 | 0d335c7 | 2017-04-18 07:12:05 -0700 | [diff] [blame] | 14 | #import <UIKit/UIKit.h> |
haysc | edd8fef | 2015-12-08 11:08:39 -0800 | [diff] [blame] | 15 | |
tkchin | 9eeb624 | 2016-04-27 01:54:20 -0700 | [diff] [blame] | 16 | #import "RTCDispatcher+Private.h" |
haysc | edd8fef | 2015-12-08 11:08:39 -0800 | [diff] [blame] | 17 | |
| 18 | @implementation RTCCameraPreviewView |
| 19 | |
| 20 | @synthesize captureSession = _captureSession; |
| 21 | |
| 22 | + (Class)layerClass { |
| 23 | return [AVCaptureVideoPreviewLayer class]; |
| 24 | } |
| 25 | |
| 26 | - (void)setCaptureSession:(AVCaptureSession *)captureSession { |
| 27 | if (_captureSession == captureSession) { |
| 28 | return; |
| 29 | } |
| 30 | _captureSession = captureSession; |
| 31 | AVCaptureVideoPreviewLayer *previewLayer = [self previewLayer]; |
| 32 | [RTCDispatcher dispatchAsyncOnType:RTCDispatcherTypeCaptureSession |
| 33 | block:^{ |
| 34 | previewLayer.session = captureSession; |
| 35 | }]; |
| 36 | } |
| 37 | |
meetAkshay99 | 0d335c7 | 2017-04-18 07:12:05 -0700 | [diff] [blame] | 38 | - (void)layoutSubviews { |
| 39 | [super layoutSubviews]; |
| 40 | |
| 41 | // Update the video orientation based on the device orientation. |
| 42 | [self setCorrectVideoOrientation]; |
| 43 | } |
| 44 | |
| 45 | - (void)setCorrectVideoOrientation { |
| 46 | // Get current device orientation. |
| 47 | UIDeviceOrientation deviceOrientation = [UIDevice currentDevice].orientation; |
| 48 | AVCaptureVideoPreviewLayer *previewLayer = [self previewLayer]; |
| 49 | |
| 50 | // First check if we are allowed to set the video orientation. |
| 51 | if (previewLayer.connection.isVideoOrientationSupported) { |
| 52 | // Set the video orientation based on device orientation. |
| 53 | if (deviceOrientation == UIInterfaceOrientationPortraitUpsideDown) { |
| 54 | previewLayer.connection.videoOrientation = |
| 55 | AVCaptureVideoOrientationPortraitUpsideDown; |
| 56 | } else if (deviceOrientation == UIInterfaceOrientationLandscapeRight) { |
| 57 | previewLayer.connection.videoOrientation = |
| 58 | AVCaptureVideoOrientationLandscapeRight; |
| 59 | } else if (deviceOrientation == UIInterfaceOrientationLandscapeLeft) { |
| 60 | previewLayer.connection.videoOrientation = |
| 61 | AVCaptureVideoOrientationLandscapeLeft; |
| 62 | } else { |
| 63 | previewLayer.connection.videoOrientation = |
| 64 | AVCaptureVideoOrientationPortrait; |
| 65 | } |
| 66 | } |
| 67 | } |
| 68 | |
haysc | edd8fef | 2015-12-08 11:08:39 -0800 | [diff] [blame] | 69 | #pragma mark - Private |
| 70 | |
| 71 | - (AVCaptureVideoPreviewLayer *)previewLayer { |
| 72 | return (AVCaptureVideoPreviewLayer *)self.layer; |
| 73 | } |
| 74 | |
| 75 | @end |