Skip to content

Commit

Permalink
Merge pull request BradLarson#368 from TomCorwine/master
Browse files Browse the repository at this point in the history
Change to insure my previous additions don't effect the expected behavior of startRecording
  • Loading branch information
BradLarson committed Aug 8, 2012
2 parents f3614c8 + c242527 commit ba5f973
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions framework/Source/GPUImageMovieWriter.m
Expand Up @@ -223,18 +223,18 @@ - (void)initializeMovieWithOutputSettings:(NSMutableDictionary *)outputSettings;

- (void)startRecording;
{
[self startRecordingInOrientation:CGAffineTransformMakeRotation(0)];
isRecording = YES;
startTime = kCMTimeInvalid;
// [assetWriter startWriting];

// [assetWriter startSessionAtSourceTime:kCMTimeZero];
}

- (void)startRecordingInOrientation:(CGAffineTransform)orientationTransform;
{
assetWriterVideoInput.transform = orientationTransform;

isRecording = YES;
startTime = kCMTimeInvalid;
// [assetWriter startWriting];

// [assetWriter startSessionAtSourceTime:kCMTimeZero];

[self startRecording];
}

- (void)finishRecording;
Expand Down

0 comments on commit ba5f973

Please sign in to comment.