mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
matroskademux: avoid posting invalid duration for each frame
https://bugzilla.gnome.org/show_bug.cgi?id=666583
This commit is contained in:
parent
4e2cf393c0
commit
32f8a04b57
1 changed files with 6 additions and 4 deletions
|
@ -3512,10 +3512,12 @@ gst_matroska_demux_parse_blockgroup_or_simpleblock (GstMatroskaDemux * demux,
|
|||
gst_segment_set_duration (&demux->common.segment, GST_FORMAT_TIME,
|
||||
last_stop_end - demux->stream_start_time);
|
||||
GST_OBJECT_UNLOCK (demux);
|
||||
gst_element_post_message (GST_ELEMENT_CAST (demux),
|
||||
gst_message_new_duration (GST_OBJECT_CAST (demux),
|
||||
GST_FORMAT_TIME, GST_CLOCK_TIME_NONE));
|
||||
demux->invalid_duration = TRUE;
|
||||
if (!demux->invalid_duration) {
|
||||
gst_element_post_message (GST_ELEMENT_CAST (demux),
|
||||
gst_message_new_duration (GST_OBJECT_CAST (demux),
|
||||
GST_FORMAT_TIME, GST_CLOCK_TIME_NONE));
|
||||
demux->invalid_duration = TRUE;
|
||||
}
|
||||
} else {
|
||||
GST_OBJECT_UNLOCK (demux);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue