mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
videoconvert: Fix compiler warnings
videoconvert.c: In function 'videoconvert_convert_new': videoconvert.c:287:11: error: 'Kr' may be used uninitialized in this function videoconvert.c:287:15: error: 'Kb' may be used uninitialized in this function
This commit is contained in:
parent
00c3823723
commit
a479886ff9
1 changed files with 1 additions and 1 deletions
|
@ -284,7 +284,7 @@ videoconvert_convert_compute_matrix (VideoConvert * convert)
|
|||
const GstVideoFormatInfo *sfinfo, *dfinfo;
|
||||
gint depth;
|
||||
gint offset[4], scale[4];
|
||||
gdouble Kr, Kb;
|
||||
gdouble Kr = 0, Kb = 0;
|
||||
|
||||
in_info = &convert->in_info;
|
||||
out_info = &convert->out_info;
|
||||
|
|
Loading…
Reference in a new issue