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:
Sebastian Dröge 2012-07-11 12:57:28 +02:00
parent 00c3823723
commit a479886ff9

View file

@ -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;