summaryrefslogtreecommitdiff
path: root/libavcodec/snow.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-01-31 00:56:29 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-01-31 00:56:29 +0000
commitf0a708408877b6436e0b9161e44350a78bc40610 (patch)
tree0604830f41718772831e34400bb6aea36a198e96 /libavcodec/snow.c
parent4a9dfdc1c9177482b8cc6909b10d0de12ef6fc3c (diff)
Add const qualifier, fix warnings:
snow.c:2292: warning: assignment discards qualifiers from pointer target type snow.c:2294: warning: assignment discards qualifiers from pointer target type snow.c:2300: warning: assignment discards qualifiers from pointer target type Originally committed as revision 11686 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/snow.c')
-rw-r--r--libavcodec/snow.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/snow.c b/libavcodec/snow.c
index eedfe12cfd..67edc340d5 100644
--- a/libavcodec/snow.c
+++ b/libavcodec/snow.c
@@ -2193,7 +2193,7 @@ static void mc_block(Plane *p, uint8_t *dst, const uint8_t *src, uint8_t *tmp, i
uint8_t tmp2t[3][stride*(32+HTAPS_MAX)];
int16_t *tmpI= tmpIt;
uint8_t *tmp2= tmp2t[0];
- uint8_t *hpel[11];
+ const uint8_t *hpel[11];
START_TIMER
assert(dx<16 && dy<16);
r= brane[dx + 16*dy]&15;
@@ -2302,10 +2302,10 @@ START_TIMER
hpel[10]= hpel[8] + 1;
if(b==15){
- uint8_t *src1= hpel[dx/8 + dy/8*4 ];
- uint8_t *src2= hpel[dx/8 + dy/8*4+1];
- uint8_t *src3= hpel[dx/8 + dy/8*4+4];
- uint8_t *src4= hpel[dx/8 + dy/8*4+5];
+ const uint8_t *src1= hpel[dx/8 + dy/8*4 ];
+ const uint8_t *src2= hpel[dx/8 + dy/8*4+1];
+ const uint8_t *src3= hpel[dx/8 + dy/8*4+4];
+ const uint8_t *src4= hpel[dx/8 + dy/8*4+5];
dx&=7;
dy&=7;
for(y=0; y < b_h; y++){
@@ -2320,8 +2320,8 @@ START_TIMER
dst +=stride;
}
}else{
- uint8_t *src1= hpel[l];
- uint8_t *src2= hpel[r];
+ const uint8_t *src1= hpel[l];
+ const uint8_t *src2= hpel[r];
int a= weight[((dx&7) + (8*(dy&7)))];
int b= 8-a;
for(y=0; y < b_h; y++){