You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-23 21:54:53 +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:
@@ -2455,7 +2455,7 @@ static av_always_inline void hl_decode_mb_internal(H264Context *h, int simple){
|
||||
if(nnz == 1 && h->mb[i*16])
|
||||
idct_dc_add(ptr, h->mb + i*16, linesize);
|
||||
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])
|
||||
idct_dc_add(ptr, h->mb + i*16, linesize);
|
||||
else
|
||||
idct_add(ptr, h->mb + i*16, linesize);
|
||||
idct_add (ptr, h->mb + i*16, linesize);
|
||||
}else
|
||||
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{
|
||||
for(i=0; i<16; 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])
|
||||
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{
|
||||
for(i=16; i<16+8; 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])
|
||||
idct_dc_add(dest[(i&4)>>2] + block_offset[i], h->mb + i*16, uvlinesize);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user