mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
deinterlace: Fix uninitialized variable compiler warnings
This commit is contained in:
parent
c5c155884a
commit
57ba515539
1 changed files with 3 additions and 0 deletions
|
@ -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++) {
|
||||
|
|
Loading…
Reference in a new issue