deinterlace: Fix uninitialized variable compiler warnings
authorSebastian Dröge <sebastian.droege@collabora.co.uk>
Sat, 14 Mar 2009 18:59:39 +0000 (19:59 +0100)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Sat, 21 Mar 2009 09:19:48 +0000 (10:19 +0100)
gst/deinterlace/gstdeinterlace.c

index 70fe142..b2a25af 100644 (file)
@@ -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++) {