diff options
Diffstat (limited to 'ext/dv/gstdvdec.c')
-rw-r--r-- | ext/dv/gstdvdec.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/ext/dv/gstdvdec.c b/ext/dv/gstdvdec.c index 113dc341..c0007d17 100644 --- a/ext/dv/gstdvdec.c +++ b/ext/dv/gstdvdec.c @@ -95,13 +95,12 @@ gst_dvdec_quality_get_type (void) if (qtype == 0) { static const GEnumValue values[] = { - {0, "DV_QUALITY_FASTEST", "Fastest decoding, low-quality mono"}, - {1, "DV_QUALITY_AC_1", "Mono decoding using the first AC coefficient"}, - {2, "DV_QUALITY_AC_2", "Highest quality mono decoding"}, - {3, "DV_QUALITY_DC|DV_QUALITY_COLOUR", "Fastest colour decoding"}, - {4, "DV_QUALITY_AC_1|DV_QUALITY_COLOUR", - "Colour, using only the first AC coefficient"}, - {5, "DV_QUALITY_BEST", "Highest quality colour decoding"}, + {0, "Monochrome, DC (Fastest)", "fastest"}, + {1, "Monochrome, first AC coefficient", "monochrome-ac"}, + {2, "Monochrome, highest quality", "monochrome-best"}, + {3, "Colour, DC, fastest", "colour-fastest"}, + {4, "Colour, using only the first AC coefficient", "colour-ac"}, + {5, "Highest quality colour decoding", "best"}, {0, NULL, NULL}, }; |