deinterlace: Fix uninitialized variable compiler warnings

This commit is contained in:
Sebastian Dröge 2009-03-14 19:59:39 +01:00
parent c5c155884a
commit 57ba515539

View 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++) {