1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

lavc/dnxhddata: Improve help output, mention yuv444p10 and gbrp10.

Fixes ticket #6836.
This commit is contained in:
Carl Eugen Hoyos 2017-11-14 18:01:03 +01:00
parent 4e93f00b06
commit f3af34f9eb

View File

@ -1158,7 +1158,7 @@ void ff_dnxhd_print_profiles(AVCodecContext *avctx, int loglevel)
av_log(avctx, loglevel, "Frame size: %dx%d%c; bitrate: %dMbps; pixel format: %s\n",
cid->width, cid->height, cid->flags & DNXHD_INTERLACED ? 'i' : 'p', cid->bit_rates[j],
cid->bit_depth == 10 ? "yuv422p10" : "yuv422p");
cid->flags & DNXHD_444 ? "yuv444p10, gbrp10" : cid->bit_depth == 10 ? "yuv422p10" : "yuv422p");
}
}
}