summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--gst/matroska/matroska-demux.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 29e33241..c88908d0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
+
+ * 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 <thomas at apestaart dot org>
* po/LINGUAS:
diff --git a/gst/matroska/matroska-demux.c b/gst/matroska/matroska-demux.c
index ec085cb8..a90548f8 100644
--- a/gst/matroska/matroska-demux.c
+++ b/gst/matroska/matroska-demux.c
@@ -2029,8 +2029,8 @@ gst_matroska_demux_parse_blockgroup (GstMatroskaDemux * demux,
demux->pos = GST_BUFFER_TIMESTAMP (sub);
}
- gst_matroska_demux_sync_streams (demux);
demux->src[stream]->pos = demux->pos;
+ gst_matroska_demux_sync_streams (demux);
/* FIXME: do all laces have the same lenght? */
if (duration) {