mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
vc1parse: Some compiler warning fixes to satisfy XCode compiler
https://bugzilla.gnome.org/show_bug.cgi?id=720513
This commit is contained in:
parent
a27d8d00a6
commit
ccd9a9cb89
1 changed files with 1 additions and 1 deletions
|
@ -747,7 +747,7 @@ gst_vc1_parse_update_caps (GstVC1Parse * vc1parse)
|
|||
/* 0x0000000c */
|
||||
GST_WRITE_UINT32_BE (data + 20, 0x0000000c);
|
||||
/* structB */
|
||||
if (vc1parse->level != -1)
|
||||
if ((gint) vc1parse->level != -1)
|
||||
data[24] = (vc1parse->level << 5);
|
||||
else
|
||||
data[24] = 0x40; /* Use HIGH level */
|
||||
|
|
Loading…
Reference in a new issue