diff options
author | jstebbins <[email protected]> | 2013-01-06 20:53:34 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2013-01-06 20:53:34 +0000 |
commit | 921b4e0aeb0a80917c5b7b2b21d9340cdd9d0b40 (patch) | |
tree | bfc5aaa5e7afbce98cd877e0473743686da0cd36 | |
parent | f69da1ae396cf45d28c97b23dcbf03857d8f9444 (diff) |
LinGui,CLI: change h.264 profile to high in AppleTV preset
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5161 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | gtk/src/standard_presets.xml | 4 | ||||
-rw-r--r-- | test/test.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gtk/src/standard_presets.xml b/gtk/src/standard_presets.xml index 9a0b35400..0b71c030d 100644 --- a/gtk/src/standard_presets.xml +++ b/gtk/src/standard_presets.xml @@ -526,13 +526,13 @@ <key>x264UseAdvancedOptions</key> <false /> <key>x264Option</key> - <string>cabac=0:ref=2:b-pyramid=none:weightb=0:weightp=0:vbv-maxrate=9500:vbv-bufsize=9500:level=3.1:8x8dct=0</string> + <string>cabac=0:ref=2:b-pyramid=none:weightb=0:weightp=0:vbv-maxrate=9500:vbv-bufsize=9500:level=3.1</string> <key>x264OptionExtra</key> <string>cabac=0:ref=2:b-pyramid=none:weightb=0:weightp=0:vbv-maxrate=9500:vbv-bufsize=9500</string> <key>x264Preset</key> <string>medium</string> <key>h264Profile</key> - <string>main</string> + <string>high</string> <key>x264Tune</key> <string>none</string> </dict> diff --git a/test/test.c b/test/test.c index ffa9556d0..087a164fa 100644 --- a/test/test.c +++ b/test/test.c @@ -952,7 +952,7 @@ static int HandleEvents( hb_handle_t * h ) } if (x264_profile == NULL) { - x264_profile = strdup("main"); + x264_profile = strdup("high"); } if (h264_level == NULL) { |