summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2009-03-14 19:59:39 +0100
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2009-03-21 10:19:48 +0100
commit57ba515539679610dec04519c132f10491e96d71 (patch)
tree50f97d7d79ef53f6f27e714c9bc060e4bd614c4c /gst
parentc5c155884a3db0c5a65afd89930eb4bea6dd3ef8 (diff)
downloadgst-plugins-bad-57ba515539679610dec04519c132f10491e96d71.tar.gz
gst-plugins-bad-57ba515539679610dec04519c132f10491e96d71.tar.bz2
gst-plugins-bad-57ba515539679610dec04519c132f10491e96d71.zip
deinterlace: Fix uninitialized variable compiler warnings
Diffstat (limited to 'gst')
-rw-r--r--gst/deinterlace/gstdeinterlace.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gst/deinterlace/gstdeinterlace.c b/gst/deinterlace/gstdeinterlace.c
index 70fe1420..b2a25afe 100644
--- a/gst/deinterlace/gstdeinterlace.c
+++ b/gst/deinterlace/gstdeinterlace.c
@@ -353,6 +353,9 @@ gst_deinterlace_transform_ip (GstBaseTransform * trans, GstBuffer * buf)
height = filter->uv_height;
fill_value = 128;
break;
+ default:
+ g_assert_not_reached ();
+ break;
}
for (x = 0; x < width; x++) {