Commit 353f87b8 authored by Baptiste Coudurier's avatar Baptiste Coudurier

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

Originally committed as revision 17046 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 8468664b
...@@ -535,7 +535,7 @@ static void ff_h264_idct_add16intra_sse2(uint8_t *dst, const int *block_offset, ...@@ -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]){ 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; 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] ]) 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); 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]) 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