cosmetics: Fix indentation in a few more places.

Originally committed as revision 12381 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2008-03-08 20:27:16 +00:00
parent ef3dfbd427
commit e73e4e75f9

View File

@ -2539,7 +2539,7 @@ static av_always_inline void add_yblock(SnowContext *s, int sliced, slice_buffer
#else
if(sliced){
s->dsp.inner_add_yblock(obmc, obmc_stride, block, b_w, b_h, src_x,src_y, src_stride, sb, add, dst8);
}else
}else{
for(y=0; y<b_h; y++){
//FIXME ugly misuse of obmc_stride
const uint8_t *obmc1= obmc + y*obmc_stride;
@ -2566,6 +2566,7 @@ static av_always_inline void add_yblock(SnowContext *s, int sliced, slice_buffer
}
}
}
}
#endif /* 0 */
}