mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-03 10:21:11 +00:00
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.
This commit is contained in:
parent
7ae72b2d5e
commit
5c2c28638c
2 changed files with 10 additions and 1 deletions
|
@ -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>
|
2005-01-27 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* po/LINGUAS:
|
* po/LINGUAS:
|
||||||
|
|
|
@ -852,7 +852,8 @@ qt_type_find (GstTypeFind * tf, gpointer unused)
|
||||||
strncmp (&data[4], "pnot", 4) != 0 &&
|
strncmp (&data[4], "pnot", 4) != 0 &&
|
||||||
strncmp (&data[4], "PICT", 4) != 0 &&
|
strncmp (&data[4], "PICT", 4) != 0 &&
|
||||||
strncmp (&data[4], "ftyp", 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;
|
tip = 0;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue