diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gst/qtdemux/qtdemux.c | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2005-04-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net> + + * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header): + Skip unknown nodes. + 2005-04-14 Gergely Nagy <algernon@bonehunter.rulez.org> * gst/switch/gstswitch.c: Set a default debug category. (Fixes: diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index 0faf4ee2..acb5f8a4 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -663,6 +663,7 @@ gst_qtdemux_loop_header (GstElement * element) { GST_LOG ("unknown %08x '" GST_FOURCC_FORMAT "' at %d", fourcc, GST_FOURCC_ARGS (fourcc), cur_offset); + gst_bytestream_flush (qtdemux->bs, length); break; } } |