Commit f3af34f9 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

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

Fixes ticket #6836.
parent 4e93f00b
......@@ -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");
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment