[FFmpeg-cvslog] avcodec/mediacodecdec_common: warn when PTS is missing

Aman Gupta git at videolan.org
Mon Sep 9 23:26:16 EEST 2019


ffmpeg | branch: master | Aman Gupta <aman at tmm1.net> | Thu Sep  5 11:10:03 2019 -0700| [425be35c2648cf1aa9a155a016c8c222a24160c7] | committer: Aman Gupta

avcodec/mediacodecdec_common: warn when PTS is missing

MediaCodec decoders require PTS for proper operation.

Signed-off-by: Aman Gupta <aman at tmm1.net>
Signed-off-by: Matthieu Bouron <matthieu.bouron at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=425be35c2648cf1aa9a155a016c8c222a24160c7
---

 libavcodec/mediacodecdec_common.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/libavcodec/mediacodecdec_common.c b/libavcodec/mediacodecdec_common.c
index 1656cd6664..26870c956d 100644
--- a/libavcodec/mediacodecdec_common.c
+++ b/libavcodec/mediacodecdec_common.c
@@ -612,7 +612,11 @@ int ff_mediacodec_dec_send(AVCodecContext *avctx, MediaCodecDecContext *s,
         }
 
         pts = pkt->pts;
-        if (pts != AV_NOPTS_VALUE && avctx->pkt_timebase.num && avctx->pkt_timebase.den) {
+        if (pts == AV_NOPTS_VALUE) {
+            av_log(avctx, AV_LOG_WARNING, "Input packet is missing PTS\n");
+            pts = 0;
+        }
+        if (pts && avctx->pkt_timebase.num && avctx->pkt_timebase.den) {
             pts = av_rescale_q(pts, avctx->pkt_timebase, AV_TIME_BASE_Q);
         }
 



More information about the ffmpeg-cvslog mailing list