[FFmpeg-cvslog] lavc/mediacodecdec: remove first output buffer timing debug log
Matthieu Bouron
git at videolan.org
Wed Oct 12 11:00:29 EEST 2016
ffmpeg | branch: master | Matthieu Bouron <matthieu.bouron at stupeflix.com> | Thu Oct 6 11:53:13 2016 +0200| [a458ed65b5d1007a9184226edd39fa78d01f694b] | committer: Matthieu Bouron
lavc/mediacodecdec: remove first output buffer timing debug log
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a458ed65b5d1007a9184226edd39fa78d01f694b
---
libavcodec/mediacodecdec.c | 8 --------
libavcodec/mediacodecdec.h | 3 ---
2 files changed, 11 deletions(-)
diff --git a/libavcodec/mediacodecdec.c b/libavcodec/mediacodecdec.c
index 6683de7..e0d71d3 100644
--- a/libavcodec/mediacodecdec.c
+++ b/libavcodec/mediacodecdec.c
@@ -449,9 +449,6 @@ static int mediacodec_dec_flush_codec(AVCodecContext *avctx, MediaCodecDecContex
return AVERROR_EXTERNAL;
}
- s->first_buffer = 0;
- s->first_buffer_at = av_gettime();
-
return 0;
}
@@ -468,7 +465,6 @@ int ff_mediacodec_dec_init(AVCodecContext *avctx, MediaCodecDecContext *s,
AV_PIX_FMT_NONE,
};
- s->first_buffer_at = av_gettime();
s->refcount = 1;
pix_fmt = ff_get_format(avctx, pix_fmts);
@@ -645,10 +641,6 @@ int ff_mediacodec_dec_decode(AVCodecContext *avctx, MediaCodecDecContext *s,
if (index >= 0) {
int ret;
- if (!s->first_buffer++) {
- av_log(avctx, AV_LOG_DEBUG, "Got first buffer after %fms\n", (av_gettime() - s->first_buffer_at) / 1000);
- }
-
av_log(avctx, AV_LOG_DEBUG, "Got output buffer %zd"
" offset=%" PRIi32 " size=%" PRIi32 " ts=%" PRIi64
" flags=%" PRIu32 "\n", index, info.offset, info.size,
diff --git a/libavcodec/mediacodecdec.h b/libavcodec/mediacodecdec.h
index 8613352..52c8bf1 100644
--- a/libavcodec/mediacodecdec.h
+++ b/libavcodec/mediacodecdec.h
@@ -61,9 +61,6 @@ typedef struct MediaCodecDecContext {
uint64_t dequeued_buffer_nb;
- int first_buffer;
- double first_buffer_at;
-
} MediaCodecDecContext;
int ff_mediacodec_dec_init(AVCodecContext *avctx,
More information about the ffmpeg-cvslog
mailing list