diff options
author | eddyg <[email protected]> | 2008-02-14 02:19:09 +0000 |
---|---|---|
committer | eddyg <[email protected]> | 2008-02-14 02:19:09 +0000 |
commit | 39212ff7d8ac8f72b59196e38e5173b8ec503f6a (patch) | |
tree | 7bdc4a4c00753e7da8d32b06cdaf6e25fdac4ef4 /macosx | |
parent | 550c8afa6360c157906fa1067b54327fb6797ecf (diff) |
AC3 from DVD via HB converted to M4V for viewing on ATV
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1261 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/Controller.mm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm index 4d955b531..279678ca5 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -21,6 +21,7 @@ static int FormatSettings[4][10] = { { HB_MUX_MP4 | HB_VCODEC_FFMPEG | HB_ACODEC_FAAC, HB_MUX_MP4 | HB_VCODEC_X264 | HB_ACODEC_FAAC, + HB_MUX_MP4 | HB_VCODEC_X264 | HB_ACODEC_AC3, 0, 0 }, { HB_MUX_MKV | HB_VCODEC_FFMPEG | HB_ACODEC_FAAC, @@ -2222,7 +2223,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It [fDstCodecsPopUp addItemWithTitle:_( @"MPEG-4 Video / AAC Audio" )]; [fDstCodecsPopUp addItemWithTitle:_( @"AVC/H.264 Video / AAC Audio" )]; - + [fDstCodecsPopUp addItemWithTitle:_( @"AVC/H.264 Video / AC-3 Audio" )]; /* We enable the create chapters checkbox here since we are .mp4*/ [fCreateChapterMarkers setEnabled: YES]; /* We show the Large File (64 bit formatting) checkbox since we are .mp4 |