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:
Mark Nauwelaerts 2009-08-18 17:16:11 +02:00
parent 68c4019057
commit 15d17763c0

View file

@ -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);