From: ritsuka Date: Sun, 2 Nov 2014 14:10:00 +0000 (+0000) Subject: MacGui: remove a unused check for the Mp4LargeFile option. X-Git-Tag: 0.10.0~36 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8e21821e0a65b7b81c27c3cd7f398193be731ab3;p=handbrake MacGui: remove a unused check for the Mp4LargeFile option. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6495 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- diff --git a/macosx/Controller.m b/macosx/Controller.m index b6fc0e38b..82f6f7402 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -3344,17 +3344,7 @@ fWorkingCount = 0; /* Format (Muxer) and Video Encoder */ job->mux = [[queueToApply objectForKey:@"JobFileFormatMux"] intValue]; job->vcodec = [[queueToApply objectForKey:@"JobVideoEncoderVcodec"] intValue]; - - - /* If mpeg-4, then set mpeg-4 specific options like chapters and > 4gb file sizes */ - if( [[queueToApply objectForKey:@"Mp4LargeFile"] intValue] == 1) - { - job->largeFileSize = 1; - } - else - { - job->largeFileSize = 0; - } + /* We set http optimized mp4 here */ if( [[queueToApply objectForKey:@"Mp4HttpOptimize"] intValue] == 1 ) { @@ -5011,9 +5001,6 @@ the user is using "Custom" settings by determining the sender*/ [preset setObject:[fDstFormatPopUp titleOfSelectedItem] forKey:@"FileFormat"]; /* Chapter Markers fCreateChapterMarkers*/ [preset setObject:@(fChapterTitlesController.createChapterMarkers) forKey:@"ChapterMarkers"]; - /* Allow Mpeg4 64 bit formatting +4GB file sizes - key kept for compatibility. */ - [preset setObject:[NSNumber numberWithInteger:0]forKey:@"Mp4LargeFile"]; /* Mux mp4 with http optimization */ [preset setObject:[NSNumber numberWithInteger:[fDstMp4HttpOptFileCheck state]] forKey:@"Mp4HttpOptimize"]; /* Add iPod uuid atom */