mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-10-18 22:55:12 +08:00
cmdutils: print missing caps in print_codec().
print full caps type in print_codec(). Signed-off-by: Jun Zhao <mypopydev@gmail.com>
This commit is contained in:
@@ -1414,6 +1414,16 @@ static void print_codec(const AVCodec *c)
|
|||||||
AV_CODEC_CAP_SLICE_THREADS |
|
AV_CODEC_CAP_SLICE_THREADS |
|
||||||
AV_CODEC_CAP_AUTO_THREADS))
|
AV_CODEC_CAP_AUTO_THREADS))
|
||||||
printf("threads ");
|
printf("threads ");
|
||||||
|
if (c->capabilities & AV_CODEC_CAP_AVOID_PROBING)
|
||||||
|
printf("avoidprobe ");
|
||||||
|
if (c->capabilities & AV_CODEC_CAP_INTRA_ONLY)
|
||||||
|
printf("intraonly ");
|
||||||
|
if (c->capabilities & AV_CODEC_CAP_LOSSLESS)
|
||||||
|
printf("lossless ");
|
||||||
|
if (c->capabilities & AV_CODEC_CAP_HARDWARE)
|
||||||
|
printf("hardware ");
|
||||||
|
if (c->capabilities & AV_CODEC_CAP_HYBRID)
|
||||||
|
printf("hybrid ");
|
||||||
if (!c->capabilities)
|
if (!c->capabilities)
|
||||||
printf("none");
|
printf("none");
|
||||||
printf("\n");
|
printf("\n");
|
||||||
|
Reference in New Issue
Block a user