From c5c6871a22f9b9998b85ebdc6c95248d47ef662d Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Sun, 12 Sep 2021 18:04:06 +0200 Subject: [PATCH] fftools/cmdutils: Don't report AV_CODEC_CAP_TRUNCATED It is deprecated. Reviewed-by: James Almer Signed-off-by: Andreas Rheinhardt --- fftools/cmdutils.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c index ed3dcd31f4..cd3f2bb2ae 100644 --- a/fftools/cmdutils.c +++ b/fftools/cmdutils.c @@ -1399,8 +1399,6 @@ static void print_codec(const AVCodec *c) printf("horizband "); if (c->capabilities & AV_CODEC_CAP_DR1) printf("dr1 "); - if (c->capabilities & AV_CODEC_CAP_TRUNCATED) - printf("trunc "); if (c->capabilities & AV_CODEC_CAP_DELAY) printf("delay "); if (c->capabilities & AV_CODEC_CAP_SMALL_LAST_FRAME)