diff options
author | Aman Gupta <aman@tmm1.net> | 2019-09-05 11:11:15 -0700 |
---|---|---|
committer | Aman Gupta <aman@tmm1.net> | 2019-09-09 13:25:03 -0700 |
commit | f821d1953151ea7b7f1e1eb96ac72529477b021a (patch) | |
tree | 847a1a833633176a3cb23cd1f4ac69df5bedca3a | |
parent | 425be35c2648cf1aa9a155a016c8c222a24160c7 (diff) | |
download | ffmpeg-f821d1953151ea7b7f1e1eb96ac72529477b021a.tar.gz |
avcodec/mediacodecdec_common: improve trace logging for end-of-stream
Signed-off-by: Aman Gupta <aman@tmm1.net>
Signed-off-by: Matthieu Bouron <matthieu.bouron@gmail.com>
-rw-r--r-- | libavcodec/mediacodecdec_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mediacodecdec_common.c b/libavcodec/mediacodecdec_common.c index 26870c956d..9005adc1f3 100644 --- a/libavcodec/mediacodecdec_common.c +++ b/libavcodec/mediacodecdec_common.c @@ -632,7 +632,7 @@ int ff_mediacodec_dec_send(AVCodecContext *avctx, MediaCodecDecContext *s, } av_log(avctx, AV_LOG_TRACE, - "Queued input buffer %zd size=%zd ts=%"PRIi64"\n", index, size, pts); + "Queued empty EOS input buffer %zd with flags=%d\n", index, flags); s->draining = 1; return 0; |