From 15d17763c0c8a89ef3e65a9ae1252f1aa1449a94 Mon Sep 17 00:00:00 2001 From: Mark Nauwelaerts Date: Tue, 18 Aug 2009 17:16:11 +0200 Subject: [PATCH] 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. --- gst/qtdemux/qtdemux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index e6b4a72e1c..fd230458d0 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);