summaryrefslogtreecommitdiffstats
path: root/gst/qtdemux
diff options
context:
space:
mode:
authorMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>2009-08-18 17:16:11 +0200
committerMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>2009-08-18 19:01:11 +0200
commit15d17763c0c8a89ef3e65a9ae1252f1aa1449a94 (patch)
tree72c74e58e29b7b79cfcb387a4ee9e4b3892a5e00 /gst/qtdemux
parent68c4019057b5f9090622c9d5eb3f6b4cb947c2a0 (diff)
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.
Diffstat (limited to 'gst/qtdemux')
-rw-r--r--gst/qtdemux/qtdemux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c
index e6b4a72e..fd230458 100644
--- a/gst/qtdemux/qtdemux.c
+++ b/gst/qtdemux/qtdemux.c
@@ -4727,7 +4727,7 @@ qtdemux_tag_add_str (GstQTDemux * qtdemux, const char *tag, const char *dummy,
GNode *data;
char *s;
int len;
- int type;
+ guint32 type;
int offset;
data = qtdemux_tree_get_child_by_type (node, FOURCC_data);