mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
y4m: Fix unitialized variables on macosx
This commit is contained in:
parent
ed8e27b237
commit
c627cd40e7
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue