mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
h264parse: Fix periodic SPS/PPS sending work after a seek
Reset the interval variable to have SPS/PPS sending work after a (backwards) seek. https://bugzilla.gnome.org/show_bug.cgi?id=742212
This commit is contained in:
parent
04e2a38ae3
commit
ef71b6178e
1 changed files with 5 additions and 1 deletions
|
@ -1747,10 +1747,12 @@ gst_h264_parse_pre_push_frame (GstBaseParse * parse, GstBaseParseFrame * frame)
|
|||
if (h264parse->interval > 0 || h264parse->push_codec) {
|
||||
GstClockTime timestamp = GST_BUFFER_TIMESTAMP (buffer);
|
||||
guint64 diff;
|
||||
gboolean initial_frame = FALSE;
|
||||
|
||||
/* init */
|
||||
if (!GST_CLOCK_TIME_IS_VALID (h264parse->last_report)) {
|
||||
h264parse->last_report = timestamp;
|
||||
initial_frame = TRUE;
|
||||
}
|
||||
|
||||
if (h264parse->idr_pos >= 0) {
|
||||
|
@ -1770,7 +1772,7 @@ gst_h264_parse_pre_push_frame (GstBaseParse * parse, GstBaseParseFrame * frame)
|
|||
GST_TIME_ARGS (diff));
|
||||
|
||||
if (GST_TIME_AS_SECONDS (diff) >= h264parse->interval ||
|
||||
h264parse->push_codec) {
|
||||
initial_frame || h264parse->push_codec) {
|
||||
GstBuffer *codec_nal;
|
||||
gint i;
|
||||
GstClockTime new_ts;
|
||||
|
@ -2218,6 +2220,8 @@ gst_h264_parse_event (GstBaseParse * parse, GstEvent * event)
|
|||
|| segment->applied_rate != 1.0))
|
||||
h264parse->do_ts = FALSE;
|
||||
|
||||
h264parse->last_report = GST_CLOCK_TIME_NONE;
|
||||
|
||||
res = GST_BASE_PARSE_CLASS (parent_class)->sink_event (parse, event);
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue