aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/bfin
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2013-04-03 15:28:45 +0300
committerMartin Storsjö <martin@martin.st>2013-04-08 12:38:33 +0300
commit9e0f14f16cfc9456a691655fda7d01090bffe47e (patch)
tree3ed6da9561ea0bd3fabe9d154ee47de76ccd0c96 /libavcodec/bfin
parent18df366a1857f9a92e158858cf495b61d096c7f1 (diff)
downloadandroid_external_ffmpeg-9e0f14f16cfc9456a691655fda7d01090bffe47e.tar.gz
android_external_ffmpeg-9e0f14f16cfc9456a691655fda7d01090bffe47e.tar.bz2
android_external_ffmpeg-9e0f14f16cfc9456a691655fda7d01090bffe47e.zip
lavc: Make pointers to ff_cropTbl const
There's no point in these pointers not being const. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/bfin')
-rw-r--r--libavcodec/bfin/vp3_bfin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/bfin/vp3_bfin.c b/libavcodec/bfin/vp3_bfin.c
index ca6702b317..ce8b0336fd 100644
--- a/libavcodec/bfin/vp3_bfin.c
+++ b/libavcodec/bfin/vp3_bfin.c
@@ -30,7 +30,7 @@
/* Intra iDCT offset 128 */
static void bfin_vp3_idct_put(uint8_t *dest, int line_size, int16_t *block)
{
- uint8_t *cm = ff_cropTbl + MAX_NEG_CROP + 128;
+ const uint8_t *cm = ff_cropTbl + MAX_NEG_CROP + 128;
int i,j;
ff_bfin_vp3_idct (block);