diff options
author | Anton Khirnov <anton@khirnov.net> | 2023-05-09 12:29:22 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2023-05-15 10:24:54 +0200 |
commit | 02823210d7f3d81c8001070efcc8e2a0612e9fa3 (patch) | |
tree | c297b3223e018681f365f7508ab903ed623899c1 /fftools/opt_common.c | |
parent | 8b20d0dcb5cfa8dc34830acdd719fc65b8b5ef67 (diff) | |
download | ffmpeg-02823210d7f3d81c8001070efcc8e2a0612e9fa3.tar.gz |
fftools/opt_common: stop printing deprecated AV_CODEC_CAP_SUBFRAMES
Diffstat (limited to 'fftools/opt_common.c')
-rw-r--r-- | fftools/opt_common.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fftools/opt_common.c b/fftools/opt_common.c index 8a06df82df..f6fe9815e1 100644 --- a/fftools/opt_common.c +++ b/fftools/opt_common.c @@ -291,8 +291,6 @@ static void print_codec(const AVCodec *c) printf("delay "); if (c->capabilities & AV_CODEC_CAP_SMALL_LAST_FRAME) printf("small "); - if (c->capabilities & AV_CODEC_CAP_SUBFRAMES) - printf("subframes "); if (c->capabilities & AV_CODEC_CAP_EXPERIMENTAL) printf("exp "); if (c->capabilities & AV_CODEC_CAP_CHANNEL_CONF) |