diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-27 22:04:00 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-31 17:21:20 +0200 |
commit | ea07dbdeaa664994dfda5814d19161f2dc9c214c (patch) | |
tree | 530fdcaa59c9e3be44a3a76fd579e329272efb3f /libavcodec | |
parent | 336982a0ce1594eaac0679c553a313466f2ea6ab (diff) | |
download | ffmpeg-ea07dbdeaa664994dfda5814d19161f2dc9c214c.tar.gz |
avcodec/utils: avcodec_string: Print color_range
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/utils.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 842740c245..adcb9cd74f 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -2598,6 +2598,9 @@ void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode) if (enc->bits_per_raw_sample && 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); + if (enc->color_range != AVCOL_RANGE_UNSPECIFIED) + av_strlcatf(detail, sizeof(detail), + enc->color_range == AVCOL_RANGE_MPEG ? "tv, ": "pc, "); if (strlen(detail) > 1) { detail[strlen(detail) - 2] = 0; av_strlcatf(buf, buf_size, "%s)", detail); |