From 4dd31f88f513751b13c5090e541a127034a983bb Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 2 Apr 2013 05:12:10 +0200 Subject: [PATCH] cavs: fix "warning: initialization discards const qualifier from pointer target type" Signed-off-by: Michael Niedermayer --- libavcodec/cavs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/cavs.c b/libavcodec/cavs.c index dffd6cc819..12af0c9a41 100644 --- a/libavcodec/cavs.c +++ b/libavcodec/cavs.c @@ -276,7 +276,7 @@ static void intra_pred_plane(uint8_t *d,uint8_t *top,uint8_t *left,int stride) int x, y, ia; int ih = 0; int iv = 0; - uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; + const uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; for (x = 0; x < 4; x++) { ih += (x + 1) * (top [5 + x] - top [3 - x]);