Commit ea07dbde authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/utils: avcodec_string: Print color_range

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 336982a0
...@@ -2598,6 +2598,9 @@ void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode) ...@@ -2598,6 +2598,9 @@ void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
if (enc->bits_per_raw_sample && if (enc->bits_per_raw_sample &&
enc->bits_per_raw_sample <= av_pix_fmt_desc_get(enc->pix_fmt)->comp[0].depth_minus1) enc->bits_per_raw_sample <= av_pix_fmt_desc_get(enc->pix_fmt)->comp[0].depth_minus1)
av_strlcatf(detail, sizeof(detail), "%d bpc, ", enc->bits_per_raw_sample); av_strlcatf(detail, sizeof(detail), "%d bpc, ", enc->bits_per_raw_sample);
if (enc->color_range != AVCOL_RANGE_UNSPECIFIED)
av_strlcatf(detail, sizeof(detail),
enc->color_range == AVCOL_RANGE_MPEG ? "tv, ": "pc, ");
if (strlen(detail) > 1) { if (strlen(detail) > 1) {
detail[strlen(detail) - 2] = 0; detail[strlen(detail) - 2] = 0;
av_strlcatf(buf, buf_size, "%s)", detail); av_strlcatf(buf, buf_size, "%s)", detail);
......
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