mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 18:05:37 +00:00
asfdemux: Fix bogus variable used uninitialised warnings
This commit is contained in:
parent
777d74390a
commit
acd6f70515
1 changed files with 3 additions and 3 deletions
|
@ -2253,9 +2253,9 @@ asf_demux_parse_picture_tag (GstTagList * tags, const guint8 * tag_data,
|
|||
guint tag_data_len)
|
||||
{
|
||||
GstByteReader r;
|
||||
const guint8 *img_data;
|
||||
guint32 img_data_len;
|
||||
guint8 pic_type;
|
||||
const guint8 *img_data = NULL;
|
||||
guint32 img_data_len = 0;
|
||||
guint8 pic_type = 0;
|
||||
|
||||
gst_byte_reader_init (&r, tag_data, tag_data_len);
|
||||
|
||||
|
|
Loading…
Reference in a new issue