summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authorritsuka <[email protected]>2014-11-02 14:10:00 +0000
committerritsuka <[email protected]>2014-11-02 14:10:00 +0000
commit8e21821e0a65b7b81c27c3cd7f398193be731ab3 (patch)
tree26739bde493e8a058938574704dd0ecc5ae325be /macosx
parent136be0c281c751b6258f9b28b5735a939ad80f51 (diff)
MacGui: remove a unused check for the Mp4LargeFile option.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6495 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx')
-rw-r--r--macosx/Controller.m15
1 files changed, 1 insertions, 14 deletions
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 */