From 355719bae70547123ab386c95f8c0b952937bd56 Mon Sep 17 00:00:00 2001 From: Zeeshan Ali Date: Sat, 28 Jul 2018 14:54:42 +0200 Subject: [PATCH] h265parse: Set duration on buffers base on framerate --- gst/videoparsers/gsth265parse.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/gst/videoparsers/gsth265parse.c b/gst/videoparsers/gsth265parse.c index 1839ace..54549a5 100644 --- a/gst/videoparsers/gsth265parse.c +++ b/gst/videoparsers/gsth265parse.c @@ -2288,9 +2288,15 @@ gst_h265_parse_parse_frame (GstBaseParse * parse, GstBaseParseFrame * frame) gst_h265_parse_update_src_caps (h265parse, NULL); - /* Fixme: Implement timestamp interpolation based on SEI Messagses */ - GST_FIXME_OBJECT (h265parse, - "Implement timestamp/duration interpolation based on SEI message"); + if (h265parse->fps_num > 0 && h265parse->fps_den > 0) { + GstH265SPS *sps = h265parse->nalparser->last_sps; + GstClockTime val; + + val = (sps != NULL && sps->profile_tier_level.interlaced_source_flag) ? + GST_SECOND / 2 : GST_SECOND; + GST_BUFFER_DURATION (buffer) = gst_util_uint64_scale (val, + h265parse->fps_den, h265parse->fps_num); + } if (h265parse->keyframe) GST_BUFFER_FLAG_UNSET (buffer, GST_BUFFER_FLAG_DELTA_UNIT); -- 2.7.4