From 92be8f98370dd484903ae978b4523e9803ce6bdf Mon Sep 17 00:00:00 2001 From: Johan Dahlin Date: Wed, 19 May 2004 09:21:43 +0000 Subject: [PATCH] ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper ending of the array. Fixes gst-inspect segfault on ppc. Original commit message from CVS: * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper ending of the array. Fixes gst-inspect segfault on ppc. --- ChangeLog | 5 +++++ ext/dv/gstdvdec.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 61db29d..520725e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-05-19 Johan Dahlin + + * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper + ending of the array. Fixes gst-inspect segfault on ppc. + 2004-05-18 David Schleef * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for diff --git a/ext/dv/gstdvdec.c b/ext/dv/gstdvdec.c index 0e9d3e1..e80c753 100644 --- a/ext/dv/gstdvdec.c +++ b/ext/dv/gstdvdec.c @@ -73,7 +73,7 @@ const gint qualities[] = { DV_QUALITY_AC_2, DV_QUALITY_DC | DV_QUALITY_COLOR, DV_QUALITY_AC_1 | DV_QUALITY_COLOR, - DV_QUALITY_AC_2 | DV_QUALITY_COLOR + DV_QUALITY_AC_2 | DV_QUALITY_COLOR, }; #define DV_QUALITY_DEFAULT 5 @@ -157,6 +157,7 @@ gst_dvdec_quality_get_type (void) {4, "DV_QUALITY_AC_1|DV_QUALITY_COLOUR", "Colour, using only the first AC coefficient"}, {5, "DV_QUALITY_BEST", "Highest quality colour decoding"}, + {0, NULL, NULL}, }; qtype = g_enum_register_static ("GstDVDecQualityEnum", values); -- 2.7.4