aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2024-01-11 12:05:58 +0100
committerAnton Khirnov <anton@khirnov.net>2024-01-30 09:52:00 +0100
commit217b8757db6280fae49e8c3cbbf3cdb7fcb02607 (patch)
treea87a378f4c97525feb7c7e7dfe64e8f07b40e6ff
parent27de2aacd15c78015327cfcc7e890b25d5295b02 (diff)
downloadffmpeg-217b8757db6280fae49e8c3cbbf3cdb7fcb02607.tar.gz
fftools/ffmpeg_dec: drop a useless log message
-rw-r--r--fftools/ffmpeg_dec.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/fftools/ffmpeg_dec.c b/fftools/ffmpeg_dec.c
index e2d503f441..1c5030d933 100644
--- a/fftools/ffmpeg_dec.c
+++ b/fftools/ffmpeg_dec.c
@@ -263,18 +263,6 @@ static int video_frame_process(InputStream *ist, AVFrame *frame)
{
DecoderPriv *dp = dp_from_dec(ist->decoder);
- if (dp->dec_ctx->width != frame->width ||
- dp->dec_ctx->height != frame->height ||
- dp->dec_ctx->pix_fmt != frame->format) {
- av_log(dp, AV_LOG_DEBUG, "Frame parameters mismatch context %d,%d,%d != %d,%d,%d\n",
- frame->width,
- frame->height,
- frame->format,
- dp->dec_ctx->width,
- dp->dec_ctx->height,
- dp->dec_ctx->pix_fmt);
- }
-
#if FFMPEG_OPT_TOP
if(ist->top_field_first>=0) {
av_log(dp, AV_LOG_WARNING, "-top is deprecated, use the setfield filter instead\n");