From 2ad1eb190781ba438a0941f420cf7d340d917845 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 26 Dec 2012 01:36:00 +0100 Subject: [PATCH] imgconvert: fix 2 "discards const qualifier from pointer target type" Signed-off-by: Michael Niedermayer --- libavcodec/imgconvert.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c index 66ce9cd0d9..09d24899f1 100644 --- a/libavcodec/imgconvert.c +++ b/libavcodec/imgconvert.c @@ -69,7 +69,7 @@ void avcodec_get_chroma_sub_sample(enum AVPixelFormat pix_fmt, int *h_shift, int *v_shift = desc->log2_chroma_h; } -static int get_color_type(AVPixFmtDescriptor *desc) { +static int get_color_type(const AVPixFmtDescriptor *desc) { if(desc->nb_components == 1 || desc->nb_components == 2) return FF_COLOR_GRAY;