diff options
author | jstebbins <[email protected]> | 2008-08-04 18:36:23 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2008-08-04 18:36:23 +0000 |
commit | 6bc770f343b5beab72fbb4aeff9da89e4e4e2fe5 (patch) | |
tree | a8492e14fb7c6ead5cbfbe7bff844c8793c38861 /gtk/src/hb-backend.c | |
parent | 1cf6953b3af6e6ff36697e712c77a9c98cdb2c41 (diff) |
LinGui: add 8x8dct checkbox to match the other ui's
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1607 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/hb-backend.c')
-rw-r--r-- | gtk/src/hb-backend.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gtk/src/hb-backend.c b/gtk/src/hb-backend.c index 2c1b09555..95d6b2df8 100644 --- a/gtk/src/hb-backend.c +++ b/gtk/src/hb-backend.c @@ -1518,6 +1518,10 @@ ghb_build_x264opts_string(GHashTable *settings) g_string_append_printf(x264opts, "analyse=%s:", ghb_settings_get_string(settings, "x264_analyse")); } + if (ghb_settings_get_bool(settings, "x264_8x8dct")) + { + g_string_append(x264opts, "8x8dct:"); + } if (analyse != 1) // != none { gint direct = ghb_settings_get_int(settings, "x264_direct"); |