[FFmpeg-cvslog] imgconvert: fix 2 "discards const qualifier from pointer target type"
Michael Niedermayer
git at videolan.org
Wed Dec 26 01:48:11 CET 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Dec 26 01:36:00 2012 +0100| [2ad1eb190781ba438a0941f420cf7d340d917845] | committer: Michael Niedermayer
imgconvert: fix 2 "discards const qualifier from pointer target type"
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2ad1eb190781ba438a0941f420cf7d340d917845
---
libavcodec/imgconvert.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c
index 66ce9cd..09d2489 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;
More information about the ffmpeg-cvslog
mailing list