comparison snow.c @ 9495:fc15a3b977bf libavcodec

Fix indention, patch by Lars T¸«£uber.
author michael
date Fri, 17 Apr 2009 19:29:54 +0000
parents e1d76267dce8
children 8178935a95d0
comparison
equal deleted inserted replaced
9494:e09e4c095fdb 9495:fc15a3b977bf
1228 if(y+2<(unsigned)height) vertical_compose97iH1(b2, b3, b4, width); 1228 if(y+2<(unsigned)height) vertical_compose97iH1(b2, b3, b4, width);
1229 if(y+1<(unsigned)height) vertical_compose97iL0(b1, b2, b3, width); 1229 if(y+1<(unsigned)height) vertical_compose97iL0(b1, b2, b3, width);
1230 if(y+0<(unsigned)height) vertical_compose97iH0(b0, b1, b2, width); 1230 if(y+0<(unsigned)height) vertical_compose97iH0(b0, b1, b2, width);
1231 } 1231 }
1232 1232
1233 if(y-1<(unsigned)height) dsp->horizontal_compose97i(b0, width); 1233 if(y-1<(unsigned)height) dsp->horizontal_compose97i(b0, width);
1234 if(y+0<(unsigned)height) dsp->horizontal_compose97i(b1, width); 1234 if(y+0<(unsigned)height) dsp->horizontal_compose97i(b1, width);
1235 1235
1236 cs->b0=b2; 1236 cs->b0=b2;
1237 cs->b1=b3; 1237 cs->b1=b3;
1238 cs->b2=b4; 1238 cs->b2=b4;
1239 cs->b3=b5; 1239 cs->b3=b5;
1247 IDWTELEM *b2= cs->b2; 1247 IDWTELEM *b2= cs->b2;
1248 IDWTELEM *b3= cs->b3; 1248 IDWTELEM *b3= cs->b3;
1249 IDWTELEM *b4= buffer + mirror(y+3, height-1)*stride; 1249 IDWTELEM *b4= buffer + mirror(y+3, height-1)*stride;
1250 IDWTELEM *b5= buffer + mirror(y+4, height-1)*stride; 1250 IDWTELEM *b5= buffer + mirror(y+4, height-1)*stride;
1251 1251
1252 if(y+3<(unsigned)height) vertical_compose97iL1(b3, b4, b5, width); 1252 if(y+3<(unsigned)height) vertical_compose97iL1(b3, b4, b5, width);
1253 if(y+2<(unsigned)height) vertical_compose97iH1(b2, b3, b4, width); 1253 if(y+2<(unsigned)height) vertical_compose97iH1(b2, b3, b4, width);
1254 if(y+1<(unsigned)height) vertical_compose97iL0(b1, b2, b3, width); 1254 if(y+1<(unsigned)height) vertical_compose97iL0(b1, b2, b3, width);
1255 if(y+0<(unsigned)height) vertical_compose97iH0(b0, b1, b2, width); 1255 if(y+0<(unsigned)height) vertical_compose97iH0(b0, b1, b2, width);
1256 1256
1257 if(y-1<(unsigned)height) ff_snow_horizontal_compose97i(b0, width); 1257 if(y-1<(unsigned)height) ff_snow_horizontal_compose97i(b0, width);
1258 if(y+0<(unsigned)height) ff_snow_horizontal_compose97i(b1, width); 1258 if(y+0<(unsigned)height) ff_snow_horizontal_compose97i(b1, width);
1259 1259
1260 cs->b0=b2; 1260 cs->b0=b2;
1261 cs->b1=b3; 1261 cs->b1=b3;
1262 cs->b2=b4; 1262 cs->b2=b4;
1263 cs->b3=b5; 1263 cs->b3=b5;