Commit 362811a9 authored by bcoudurier's avatar bcoudurier

fix typo in h264dsp_mmx (no effect currently as the function is not used),...

fix typo in h264dsp_mmx (no effect currently as the function is not used), approved by Dark Shikari on IRC

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17046 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 193093f6
......@@ -535,7 +535,7 @@ static void ff_h264_idct_add16intra_sse2(uint8_t *dst, const int *block_offset,
static void ff_h264_idct_add8_sse2(uint8_t **dest, const int *block_offset, DCTELEM *block, int stride, const uint8_t nnzc[6*8]){
int i;
for(i=16; i<16+8; i++){
for(i=16; i<16+8; i+=2){
if(nnzc[ scan8[i+0] ]|nnzc[ scan8[i+1] ])
ff_x264_add8x4_idct_sse2 (dest[(i&4)>>2] + block_offset[i], block + i*16, stride);
else if(block[i*16]|block[i*16+16])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment