mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
qtdemux: fix qt style string tag extraction
QT style tags are tested on starting with (C) symbol using >>, and (unsigned) int (may) have different >> behaviour. Fixes #592232.
This commit is contained in:
parent
68c4019057
commit
15d17763c0
1 changed files with 1 additions and 1 deletions
|
@ -4727,7 +4727,7 @@ qtdemux_tag_add_str (GstQTDemux * qtdemux, const char *tag, const char *dummy,
|
||||||
GNode *data;
|
GNode *data;
|
||||||
char *s;
|
char *s;
|
||||||
int len;
|
int len;
|
||||||
int type;
|
guint32 type;
|
||||||
int offset;
|
int offset;
|
||||||
|
|
||||||
data = qtdemux_tree_get_child_by_type (node, FOURCC_data);
|
data = qtdemux_tree_get_child_by_type (node, FOURCC_data);
|
||||||
|
|
Loading…
Reference in a new issue