comparison svq3.c @ 5006:28ebdd244a07 libavcodec

Change some leftover __attribute__((unused)) and __attribute__((used)) to attribute_unused and attribute_used respectively to ease compiling on non-gcc.
author reimar
date Mon, 14 May 2007 14:07:50 +0000
parents a96d905dcbaa
children 71da0c30248b
comparison
equal deleted inserted replaced
5005:3aba3479d806 5006:28ebdd244a07
181 } 181 }
182 182
183 static void pred4x4_down_left_svq3_c(uint8_t *src, uint8_t *topright, int stride){ 183 static void pred4x4_down_left_svq3_c(uint8_t *src, uint8_t *topright, int stride){
184 LOAD_TOP_EDGE 184 LOAD_TOP_EDGE
185 LOAD_LEFT_EDGE 185 LOAD_LEFT_EDGE
186 const __attribute__((unused)) int unu0= t0; 186 const attribute_unused int unu0= t0;
187 const __attribute__((unused)) int unu1= l0; 187 const attribute_unused int unu1= l0;
188 188
189 src[0+0*stride]=(l1 + t1)>>1; 189 src[0+0*stride]=(l1 + t1)>>1;
190 src[1+0*stride]= 190 src[1+0*stride]=
191 src[0+1*stride]=(l2 + t2)>>1; 191 src[0+1*stride]=(l2 + t2)>>1;
192 src[2+0*stride]= 192 src[2+0*stride]=