From 8da23be458f4249f8e4348fea775c12cb3da241c Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 27 Aug 2013 22:04:38 +0200 Subject: [PATCH] avcodec/utils: avcodec_string: print colorspace type Signed-off-by: Michael Niedermayer --- libavcodec/utils.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/libavcodec/utils.c b/libavcodec/utils.c index adcb9cd74f..4e510e69e4 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -2601,6 +2601,21 @@ void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode) if (enc->color_range != AVCOL_RANGE_UNSPECIFIED) av_strlcatf(detail, sizeof(detail), enc->color_range == AVCOL_RANGE_MPEG ? "tv, ": "pc, "); + if (enc->colorspace<9U) { + static const char *name[] = { + "GBR", + "bt709", + NULL, + NULL, + "fcc", + "bt470bg", + "smpte170m", + "smpte240m", + "YCgCo", + }; + if (name[enc->colorspace]) + av_strlcatf(detail, sizeof(detail), "%s, ", name[enc->colorspace]); + } if (strlen(detail) > 1) { detail[strlen(detail) - 2] = 0; av_strlcatf(buf, buf_size, "%s)", detail);