From 5c2c28638cd8b5766921e819fb8b3cbc8c35e468 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Thu, 27 Jan 2005 23:30:17 +0000 Subject: [PATCH] gst/matroska/matroska-demux.c: Fix logic error in timing of subtitle stream synchronization. Original commit message from CVS: * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup): Fix logic error in timing of subtitle stream synchronization. * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Add skip-chunk, which is found in kodak-camera streams. --- ChangeLog | 8 ++++++++ gst/typefind/gsttypefindfunctions.c | 3 ++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 29e3324..c88908d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2005-01-28 Ronald S. Bultje + + * gst/matroska/matroska-demux.c: + (gst_matroska_demux_parse_blockgroup): + Fix logic error in timing of subtitle stream synchronization. + * gst/typefind/gsttypefindfunctions.c: (qt_type_find): + Add skip-chunk, which is found in kodak-camera streams. + 2005-01-27 Thomas Vander Stichele * po/LINGUAS: diff --git a/gst/typefind/gsttypefindfunctions.c b/gst/typefind/gsttypefindfunctions.c index f72e4a7..d60f2c7 100644 --- a/gst/typefind/gsttypefindfunctions.c +++ b/gst/typefind/gsttypefindfunctions.c @@ -852,7 +852,8 @@ qt_type_find (GstTypeFind * tf, gpointer unused) strncmp (&data[4], "pnot", 4) != 0 && strncmp (&data[4], "PICT", 4) != 0 && strncmp (&data[4], "ftyp", 4) != 0 && - strncmp (&data[4], "free", 4) != 0) { + strncmp (&data[4], "free", 4) != 0 && + strncmp (&data[4], "skip", 4) != 0) { tip = 0; break; } -- 2.7.4