From 19b4c0ccf924366e9a61793e7334d7bd82c68f23 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 10 Oct 2014 04:24:05 +0200 Subject: [PATCH] ffprobe: Simplify by using av_color_range_name() Idea from: a2c00d22e71d13b72828147be86aa9e961c6cae6 Signed-off-by: Michael Niedermayer --- ffprobe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffprobe.c b/ffprobe.c index f35b780ffa..304ec8e67d 100644 --- a/ffprobe.c +++ b/ffprobe.c @@ -2112,7 +2112,7 @@ static int show_stream(WriterContext *w, AVFormatContext *fmt_ctx, int stream_id else print_str_opt("pix_fmt", "unknown"); print_int("level", dec_ctx->level); if (dec_ctx->color_range != AVCOL_RANGE_UNSPECIFIED) - print_str ("color_range", dec_ctx->color_range == AVCOL_RANGE_MPEG ? "tv": "pc"); + print_str ("color_range", av_color_range_name(dec_ctx->color_range)); else print_str_opt("color_range", "N/A"); s = av_get_colorspace_name(dec_ctx->colorspace);