mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-05 23:59:55 +00:00
matroskademux: Ignore keyframe flag for non-video streams
When the keyframe bit of SimpleBlock Flags wasn't set, the buffer was being marked with GST_BUFFER_FLAG_DELTA_UNIT, causing all buffers to be skipped after a seek. This may be a problem with the Sorenson Squish encoder, but arguably the keyframe bit should only be applied to video. Fixes bug #620358.
This commit is contained in:
parent
0fe56cc0d6
commit
b2ff8042d3
1 changed files with 3 additions and 1 deletions
|
@ -4815,7 +4815,9 @@ gst_matroska_demux_parse_blockgroup_or_simpleblock (GstMatroskaDemux * demux,
|
|||
gst_matroska_demux_sync_streams (demux);
|
||||
|
||||
if (is_simpleblock) {
|
||||
if (flags & 0x80)
|
||||
/* bit 0 of SimpleBlock Flags is "Keyframe, set when the Block
|
||||
contains only keyframes" */
|
||||
if (flags & 0x80 || stream->type != GST_MATROSKA_TRACK_TYPE_VIDEO)
|
||||
GST_BUFFER_FLAG_UNSET (sub, GST_BUFFER_FLAG_DELTA_UNIT);
|
||||
else
|
||||
GST_BUFFER_FLAG_SET (sub, GST_BUFFER_FLAG_DELTA_UNIT);
|
||||
|
|
Loading…
Reference in a new issue