|
/* |
File: RosyWriterViewController.m |
Abstract: View controller for camera interface |
Version: 2.1 |
|
Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple |
Inc. ("Apple") in consideration of your agreement to the following |
terms, and your use, installation, modification or redistribution of |
this Apple software constitutes acceptance of these terms. If you do |
not agree with these terms, please do not use, install, modify or |
redistribute this Apple software. |
|
In consideration of your agreement to abide by the following terms, and |
subject to these terms, Apple grants you a personal, non-exclusive |
license, under Apple's copyrights in this original Apple software (the |
"Apple Software"), to use, reproduce, modify and redistribute the Apple |
Software, with or without modifications, in source and/or binary forms; |
provided that if you redistribute the Apple Software in its entirety and |
without modifications, you must retain this notice and the following |
text and disclaimers in all such redistributions of the Apple Software. |
Neither the name, trademarks, service marks or logos of Apple Inc. may |
be used to endorse or promote products derived from the Apple Software |
without specific prior written permission from Apple. Except as |
expressly stated in this notice, no other rights or licenses, express or |
implied, are granted by Apple herein, including but not limited to any |
patent rights that may be infringed by your derivative works or by other |
works in which the Apple Software may be incorporated. |
|
The Apple Software is provided by Apple on an "AS IS" basis. APPLE |
MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION |
THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS |
FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND |
OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS. |
|
IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL |
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, |
MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED |
AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), |
STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE |
POSSIBILITY OF SUCH DAMAGE. |
|
Copyright (C) 2014 Apple Inc. All Rights Reserved. |
|
*/ |
|
#import "RosyWriterViewController.h" |
|
#import <QuartzCore/QuartzCore.h> |
#import "RosyWriterCapturePipeline.h" |
#import "OpenGLPixelBufferView.h" |
|
@interface RosyWriterViewController () <RosyWriterCapturePipelineDelegate> |
{ |
BOOL _addedObservers; |
BOOL _recording; |
UIBackgroundTaskIdentifier _backgroundRecordingID; |
BOOL _allowedToUseGPU; |
} |
|
@property(nonatomic, retain) IBOutlet UIBarButtonItem *recordButton; |
@property(nonatomic, retain) IBOutlet UILabel *framerateLabel; |
@property(nonatomic, retain) IBOutlet UILabel *dimensionsLabel; |
@property(nonatomic, retain) NSTimer *labelTimer; |
@property(nonatomic, retain) OpenGLPixelBufferView *previewView; |
@property(nonatomic, retain) RosyWriterCapturePipeline *capturePipeline; |
|
@end |
|
@implementation RosyWriterViewController |
|
- (void)dealloc |
{ |
if ( _addedObservers ) { |
[[NSNotificationCenter defaultCenter] removeObserver:self name:UIApplicationDidEnterBackgroundNotification object:[UIApplication sharedApplication]]; |
[[NSNotificationCenter defaultCenter] removeObserver:self name:UIApplicationWillEnterForegroundNotification object:[UIApplication sharedApplication]]; |
[[NSNotificationCenter defaultCenter] removeObserver:self name:UIDeviceOrientationDidChangeNotification object:[UIDevice currentDevice]]; |
[[UIDevice currentDevice] endGeneratingDeviceOrientationNotifications]; |
} |
|
[_recordButton release]; |
[_framerateLabel release]; |
[_dimensionsLabel release]; |
[_labelTimer release]; |
[_previewView release]; |
[_capturePipeline release]; |
|
[super dealloc]; |
} |
|
#pragma mark - View lifecycle |
|
- (void)applicationDidEnterBackground |
{ |
// Avoid using the GPU in the background |
_allowedToUseGPU = NO; |
self.capturePipeline.renderingEnabled = NO; |
|
[self.capturePipeline stopRecording]; // no-op if we aren't recording |
|
// We reset the OpenGLPixelBufferView to ensure all resources have been clear when going to the background. |
[self.previewView reset]; |
} |
|
- (void)applicationWillEnterForeground |
{ |
_allowedToUseGPU = YES; |
self.capturePipeline.renderingEnabled = YES; |
} |
|
- (void)viewDidLoad |
{ |
self.capturePipeline = [[[RosyWriterCapturePipeline alloc] init] autorelease]; |
[self.capturePipeline setDelegate:self callbackQueue:dispatch_get_main_queue()]; |
|
[[NSNotificationCenter defaultCenter] addObserver:self |
selector:@selector(applicationDidEnterBackground) |
name:UIApplicationDidEnterBackgroundNotification |
object:[UIApplication sharedApplication]]; |
[[NSNotificationCenter defaultCenter] addObserver:self |
selector:@selector(applicationWillEnterForeground) |
name:UIApplicationWillEnterForegroundNotification |
object:[UIApplication sharedApplication]]; |
[[NSNotificationCenter defaultCenter] addObserver:self |
selector:@selector(deviceOrientationDidChange) |
name:UIDeviceOrientationDidChangeNotification |
object:[UIDevice currentDevice]]; |
|
// Keep track of changes to the device orientation so we can update the capture pipeline |
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications]; |
|
_addedObservers = YES; |
|
// the willEnterForeground and didEnterBackground notifications are subsequently used to update _allowedToUseGPU |
_allowedToUseGPU = ( [UIApplication sharedApplication].applicationState != UIApplicationStateBackground ); |
self.capturePipeline.renderingEnabled = _allowedToUseGPU; |
|
[super viewDidLoad]; |
} |
|
- (void)viewWillAppear:(BOOL)animated |
{ |
[super viewWillAppear:animated]; |
|
[self.capturePipeline startRunning]; |
|
self.labelTimer = [NSTimer scheduledTimerWithTimeInterval:0.5 target:self selector:@selector(updateLabels) userInfo:nil repeats:YES]; |
} |
|
- (void)viewDidDisappear:(BOOL)animated |
{ |
[super viewDidDisappear:animated]; |
|
[self.labelTimer invalidate]; |
self.labelTimer = nil; |
|
[self.capturePipeline stopRunning]; |
} |
|
- (NSUInteger)supportedInterfaceOrientations |
{ |
return UIInterfaceOrientationMaskPortrait; |
} |
|
- (BOOL)prefersStatusBarHidden |
{ |
return YES; |
} |
|
#pragma mark - UI |
|
- (IBAction)toggleRecording:(id)sender |
{ |
if ( _recording ) |
{ |
[self.capturePipeline stopRecording]; |
} |
else |
{ |
// Disable the idle timer while recording |
[UIApplication sharedApplication].idleTimerDisabled = YES; |
|
// Make sure we have time to finish saving the movie if the app is backgrounded during recording |
if ( [[UIDevice currentDevice] isMultitaskingSupported] ) { |
_backgroundRecordingID = [[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:^{}]; |
} |
|
self.recordButton.enabled = NO; // re-enabled once recording has finished starting |
self.recordButton.title = @"Stop"; |
|
[self.capturePipeline startRecording]; |
|
_recording = YES; |
} |
} |
|
- (void)recordingStopped |
{ |
_recording = NO; |
self.recordButton.enabled = YES; |
self.recordButton.title = @"Record"; |
|
[UIApplication sharedApplication].idleTimerDisabled = NO; |
|
[[UIApplication sharedApplication] endBackgroundTask:_backgroundRecordingID]; |
_backgroundRecordingID = UIBackgroundTaskInvalid; |
} |
|
- (void)setupPreviewView |
{ |
// Set up GL view |
self.previewView = [[[OpenGLPixelBufferView alloc] initWithFrame:CGRectZero] autorelease]; |
self.previewView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth; |
|
UIInterfaceOrientation currentInterfaceOrientation = [UIApplication sharedApplication].statusBarOrientation; |
self.previewView.transform = [self.capturePipeline transformFromVideoBufferOrientationToOrientation:(AVCaptureVideoOrientation)currentInterfaceOrientation withAutoMirroring:YES]; // Front camera preview should be mirrored |
|
[self.view insertSubview:self.previewView atIndex:0]; |
CGRect bounds = CGRectZero; |
bounds.size = [self.view convertRect:self.view.bounds toView:self.previewView].size; |
self.previewView.bounds = bounds; |
self.previewView.center = CGPointMake(self.view.bounds.size.width/2.0, self.view.bounds.size.height/2.0); |
} |
|
- (void)deviceOrientationDidChange |
{ |
UIDeviceOrientation deviceOrientation = [UIDevice currentDevice].orientation; |
|
// Update recording orientation if device changes to portrait or landscape orientation (but not face up/down) |
if ( UIDeviceOrientationIsPortrait( deviceOrientation ) || UIDeviceOrientationIsLandscape( deviceOrientation ) ) { |
[self.capturePipeline setRecordingOrientation:(AVCaptureVideoOrientation)deviceOrientation]; |
} |
} |
|
- (void)updateLabels |
{ |
NSString *frameRateString = [NSString stringWithFormat:@"%d FPS", (int)roundf(self.capturePipeline.videoFrameRate)]; |
self.framerateLabel.text = frameRateString; |
|
NSString *dimensionsString = [NSString stringWithFormat:@"%d x %d", self.capturePipeline.videoDimensions.width, self.capturePipeline.videoDimensions.height]; |
self.dimensionsLabel.text = dimensionsString; |
} |
|
- (void)showError:(NSError *)error |
{ |
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:error.localizedDescription |
message:error.localizedFailureReason |
delegate:nil |
cancelButtonTitle:@"OK" |
otherButtonTitles:nil]; |
[alertView show]; |
[alertView release]; |
} |
|
#pragma mark - RosyWriterCapturePipelineDelegate |
|
- (void)capturePipeline:(RosyWriterCapturePipeline *)capturePipeline didStopRunningWithError:(NSError *)error |
{ |
[self showError:error]; |
|
self.recordButton.enabled = NO; |
} |
|
// Preview |
- (void)capturePipeline:(RosyWriterCapturePipeline *)capturePipeline previewPixelBufferReadyForDisplay:(CVPixelBufferRef)previewPixelBuffer |
{ |
if ( ! _allowedToUseGPU ) { |
return; |
} |
|
if ( ! self.previewView ) { |
[self setupPreviewView]; |
} |
|
[self.previewView displayPixelBuffer:previewPixelBuffer]; |
} |
|
- (void)capturePipelineDidRunOutOfPreviewBuffers:(RosyWriterCapturePipeline *)capturePipeline |
{ |
if ( _allowedToUseGPU ) { |
[self.previewView flushPixelBufferCache]; |
} |
} |
|
// Recording |
- (void)capturePipelineRecordingDidStart:(RosyWriterCapturePipeline *)capturePipeline |
{ |
self.recordButton.enabled = YES; |
} |
|
- (void)capturePipelineRecordingWillStop:(RosyWriterCapturePipeline *)capturePipeline |
{ |
// Disable record button until we are ready to start another recording |
self.recordButton.enabled = NO; |
self.recordButton.title = @"Record"; |
} |
|
- (void)capturePipelineRecordingDidStop:(RosyWriterCapturePipeline *)capturePipeline |
{ |
[self recordingStopped]; |
} |
|
- (void)capturePipeline:(RosyWriterCapturePipeline *)capturePipeline recordingDidFailWithError:(NSError *)error |
{ |
[self recordingStopped]; |
[self showError:error]; |
} |
|
@end |