diff options
-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) { |