summaryrefslogtreecommitdiffstats
path: root/macosx/ExpressController.m
diff options
context:
space:
mode:
authorhandbrake <[email protected]>2006-12-26 15:43:33 +0000
committerhandbrake <[email protected]>2006-12-26 15:43:33 +0000
commita51c45b126cd4898f44a9920af398dc3196255d7 (patch)
tree54c2ceb659e57649928859fc64c322bf22d33c87 /macosx/ExpressController.m
parentb00de70e59cac3419d7b53cf70bb801c09472c88 (diff)
updated Instant HandBrake to output higher resolution H.264 for iPod 5G and 5.5G
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@72 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/ExpressController.m')
-rw-r--r--macosx/ExpressController.m9
1 files changed, 5 insertions, 4 deletions
diff --git a/macosx/ExpressController.m b/macosx/ExpressController.m
index 9191bb7e6..6579d6429 100644
--- a/macosx/ExpressController.m
+++ b/macosx/ExpressController.m
@@ -205,11 +205,12 @@
if( [fConvertFormatPopUp indexOfSelectedItem] == 0 )
{
/* iPod / H.264 */
- job->mux = HB_MUX_MP4;
+ job->mux = HB_MUX_IPOD;
job->vcodec = HB_VCODEC_X264;
- job->h264_13 = 1;
- job->vbitrate = 600;
- pixels = 76800;
+ job->h264_level = 30;
+ job->vbitrate = 1000;
+ job->deinterlace = 1;
+ pixels = 307200;
aspect = 4 * HB_ASPECT_BASE / 3;
}
else if( [fConvertFormatPopUp indexOfSelectedItem] == 1 )