Commit 8da23be4 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/utils: avcodec_string: print colorspace type

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent ea07dbde
......@@ -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);
......
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