y4m: Fix unitialized variables on macosx

This commit is contained in:
Edward Hervey 2011-01-05 16:43:45 +01:00
parent ed8e27b237
commit c627cd40e7

View file

@ -281,7 +281,7 @@ gst_y4m_dec_parse_header (GstY4mDec * y4mdec, char *header)
{
char *end;
int format = -1;
int interlaced_char;
int interlaced_char = 0;
if (memcmp (header, "YUV4MPEG2 ", 10) != 0) {
return FALSE;