1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-29 22:00:58 +02:00

Fix indention, also do a little vertical alignment of changed lines.

Originally committed as revision 16176 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2008-12-16 22:16:11 +00:00
parent 7b1454c439
commit ac0623b23c

View File

@ -2455,7 +2455,7 @@ static av_always_inline void hl_decode_mb_internal(H264Context *h, int simple){
if(nnz == 1 && h->mb[i*16]) if(nnz == 1 && h->mb[i*16])
idct_dc_add(ptr, h->mb + i*16, linesize); idct_dc_add(ptr, h->mb + i*16, linesize);
else else
idct_add(ptr, h->mb + i*16, linesize); idct_add (ptr, h->mb + i*16, linesize);
} }
} }
} }
@ -2487,7 +2487,7 @@ static av_always_inline void hl_decode_mb_internal(H264Context *h, int simple){
if(nnz == 1 && h->mb[i*16]) if(nnz == 1 && h->mb[i*16])
idct_dc_add(ptr, h->mb + i*16, linesize); idct_dc_add(ptr, h->mb + i*16, linesize);
else else
idct_add(ptr, h->mb + i*16, linesize); idct_add (ptr, h->mb + i*16, linesize);
}else }else
svq3_add_idct_c(ptr, h->mb + i*16, linesize, s->qscale, 0); svq3_add_idct_c(ptr, h->mb + i*16, linesize, s->qscale, 0);
} }
@ -2520,7 +2520,7 @@ static av_always_inline void hl_decode_mb_internal(H264Context *h, int simple){
}else{ }else{
for(i=0; i<16; i++){ for(i=0; i<16; i++){
if(h->non_zero_count_cache[ scan8[i] ]) if(h->non_zero_count_cache[ scan8[i] ])
idct_add(dest_y + block_offset[i], h->mb + i*16, linesize); idct_add (dest_y + block_offset[i], h->mb + i*16, linesize);
else if(h->mb[i*16]) else if(h->mb[i*16])
idct_dc_add(dest_y + block_offset[i], h->mb + i*16, linesize); idct_dc_add(dest_y + block_offset[i], h->mb + i*16, linesize);
} }
@ -2564,7 +2564,7 @@ static av_always_inline void hl_decode_mb_internal(H264Context *h, int simple){
}else{ }else{
for(i=16; i<16+8; i++){ for(i=16; i<16+8; i++){
if(h->non_zero_count_cache[ scan8[i] ]) if(h->non_zero_count_cache[ scan8[i] ])
idct_add(dest[(i&4)>>2] + block_offset[i], h->mb + i*16, uvlinesize); idct_add (dest[(i&4)>>2] + block_offset[i], h->mb + i*16, uvlinesize);
else if(h->mb[i*16]) else if(h->mb[i*16])
idct_dc_add(dest[(i&4)>>2] + block_offset[i], h->mb + i*16, uvlinesize); idct_dc_add(dest[(i&4)>>2] + block_offset[i], h->mb + i*16, uvlinesize);
} }