OSDN Git Service

LinGui: remove b-pyramid/mbtree dependency
authorjstebbins <jstebbins@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Wed, 9 Dec 2009 19:59:49 +0000 (19:59 +0000)
committerjstebbins <jstebbins@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Wed, 9 Dec 2009 19:59:49 +0000 (19:59 +0000)
b-pyramid is now allowed with mbtree

git-svn-id: svn://localhost/HandBrake/trunk@3021 b64f7644-9d1e-0410-96f1-a4d463321fa5

gtk/src/widgetdeps.c
gtk/src/x264handler.c

index 17502eb..4e161fa 100644 (file)
@@ -69,7 +69,6 @@ static dependency_t dep_map[] =
        {"x264_subme", "x264_psy_trell", "<6", TRUE, FALSE},
        {"x264_cabac", "x264_psy_trell", "TRUE", FALSE, FALSE},
        {"x264_trellis", "x264_psy_trell", "0", TRUE, FALSE},
-       {"x264_mbtree", "x264_bpyramid", "TRUE", TRUE, FALSE},
        {"ChapterMarkers", "chapters_list", "TRUE", FALSE, FALSE},
        {"use_source_name", "chapters_in_destination", "TRUE", FALSE, FALSE},
        {"use_source_name", "title_no_in_destination", "TRUE", FALSE, FALSE},
index 2118349..e739bbb 100644 (file)
@@ -819,11 +819,6 @@ sanitize_x264opts(signal_user_data_t *ud, const gchar *options)
        gint ii;
 
        // Fix up option dependencies
-       gboolean mbtree = ghb_lookup_mbtree(options);
-       if (mbtree)
-       {
-               x264_remove_opt(split, x264_bpyramid_syns);
-       }
        gint subme = ghb_settings_combo_int(ud->settings, "x264_subme");
        if (subme < 6)
        {