comparison svq3.c @ 5083:ce36118abbbb libavcodec

rename attribute_unused to av_unused and moves its declaration to common.h patch by Carl Eugen Hoyos cehoyos chez ag or at original thread: [FFmpeg-devel] [PATCH] attribute_unused -> av_unused date: 05/29/2007 01:23 PM
author benoit
date Wed, 30 May 2007 09:32:25 +0000
parents 71da0c30248b
children 4dbe6578f811
comparison
equal deleted inserted replaced
5082:176ac8353f48 5083:ce36118abbbb
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 av_unused int unu0= t0;
187 const attribute_unused int unu1= l0; 187 const av_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]=