Commit 1f5b28bf authored by michael's avatar michael

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16176 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f9e1e6b2
...@@ -2455,7 +2455,7 @@ static av_always_inline void hl_decode_mb_internal(H264Context *h, int simple){ ...@@ -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){ ...@@ -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){ ...@@ -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){ ...@@ -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);
} }
......
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