mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 18:05: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;
|
char *end;
|
||||||
int format = -1;
|
int format = -1;
|
||||||
int interlaced_char;
|
int interlaced_char = 0;
|
||||||
|
|
||||||
if (memcmp (header, "YUV4MPEG2 ", 10) != 0) {
|
if (memcmp (header, "YUV4MPEG2 ", 10) != 0) {
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
Loading…
Reference in a new issue