deinterlace: Fix uninitialized variable compiler warnings
This commit is contained in:
parent
c5c155884a
commit
57ba515539
@ -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++) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user