diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-02 05:12:10 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-04-02 05:12:10 +0200 |
commit | 4dd31f88f513751b13c5090e541a127034a983bb (patch) | |
tree | 58316166531c431dc1c083870eb207d13853f56b | |
parent | 7f4b588fdfab6085c63980c1ce84760b594f1506 (diff) | |
download | ffmpeg-4dd31f88f513751b13c5090e541a127034a983bb.tar.gz |
cavs: fix "warning: initialization discards const qualifier from pointer target type"
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/cavs.c | 2 |
1 files changed, 1 insertions, 1 deletions
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]); |