summaryrefslogtreecommitdiff
path: root/fftools/cmdutils.c
diff options
context:
space:
mode:
authorSoft Works <softworkz@hotmail.com>2021-10-13 12:08:57 +0000
committerMarton Balint <cus@passwd.hu>2021-11-13 19:55:32 +0100
commitf3b6e3e81aad9adb454cee2983d55455e2fc3ec2 (patch)
tree8d19901cde315f8cf9e2ae147bd19cca1f0198f7 /fftools/cmdutils.c
parentce47ce079ae0e1f60ccca3d614181a4ba05cc2e2 (diff)
downloadffmpeg-f3b6e3e81aad9adb454cee2983d55455e2fc3ec2.tar.gz
fftools/cmdutils: Print bit depths when executing 'ffmpeg -pix_fmts'
New output looks like this: Pixel formats: I.... = Supported Input format for conversion .O... = Supported Output format for conversion ..H.. = Hardware accelerated format ...P. = Paletted format ....B = Bitstream format FLAGS NAME NB_COMPONENTS BITS_PER_PIXEL BIT_DEPTHS ----- IO... yuv420p 3 12 8-8-8 IO... yuyv422 3 16 8-8-8 IO... rgb24 3 24 8-8-8 IO... bgr24 3 24 8-8-8 IO... yuv422p 3 16 8-8-8 IO... yuv444p 3 24 8-8-8 [..] Signed-off-by: softworkz <softworkz@hotmail.com> Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'fftools/cmdutils.c')
-rw-r--r--fftools/cmdutils.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c
index 2c8e98982f..426ba6c99f 100644
--- a/fftools/cmdutils.c
+++ b/fftools/cmdutils.c
@@ -1754,7 +1754,7 @@ int show_pix_fmts(void *optctx, const char *opt, const char *arg)
"..H.. = Hardware accelerated format\n"
"...P. = Paletted format\n"
"....B = Bitstream format\n"
- "FLAGS NAME NB_COMPONENTS BITS_PER_PIXEL\n"
+ "FLAGS NAME NB_COMPONENTS BITS_PER_PIXEL BIT_DEPTHS\n"
"-----\n");
#if !CONFIG_SWSCALE
@@ -1764,7 +1764,7 @@ int show_pix_fmts(void *optctx, const char *opt, const char *arg)
while ((pix_desc = av_pix_fmt_desc_next(pix_desc))) {
enum AVPixelFormat av_unused pix_fmt = av_pix_fmt_desc_get_id(pix_desc);
- printf("%c%c%c%c%c %-16s %d %2d\n",
+ printf("%c%c%c%c%c %-16s %d %3d %d",
sws_isSupportedInput (pix_fmt) ? 'I' : '.',
sws_isSupportedOutput(pix_fmt) ? 'O' : '.',
pix_desc->flags & AV_PIX_FMT_FLAG_HWACCEL ? 'H' : '.',
@@ -1772,7 +1772,12 @@ int show_pix_fmts(void *optctx, const char *opt, const char *arg)
pix_desc->flags & AV_PIX_FMT_FLAG_BITSTREAM ? 'B' : '.',
pix_desc->name,
pix_desc->nb_components,
- av_get_bits_per_pixel(pix_desc));
+ av_get_bits_per_pixel(pix_desc),
+ pix_desc->comp[0].depth);
+
+ for (unsigned i = 1; i < pix_desc->nb_components; i++)
+ printf("-%d", pix_desc->comp[i].depth);
+ printf("\n");
}
return 0;
}