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; height = filter->uv_height;
fill_value = 128; fill_value = 128;
break; break;
default:
g_assert_not_reached ();
break;
} }
for (x = 0; x < width; x++) { for (x = 0; x < width; x++) {