[FFmpeg-devel] [PATCH 2/3] avcodec/utils: avcodec_string: Print color_range
Michael Niedermayer
michaelni at gmx.at
Tue Aug 27 22:17:47 CEST 2013
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
---
libavcodec/utils.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index 27f0fdd..0e0c44e 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -2597,6 +2597,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);
--
1.7.9.5
More information about the ffmpeg-devel
mailing list