mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-27 21:20:41 +00:00
indentation after last commit
Originally committed as revision 10826 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
dd55d4a315
commit
63e6c1766c
@ -743,17 +743,17 @@ static int rv10_decode_frame(AVCodecContext *avctx,
|
|||||||
}else
|
}else
|
||||||
slice_count = avctx->slice_count;
|
slice_count = avctx->slice_count;
|
||||||
|
|
||||||
for(i=0; i<slice_count; i++){
|
for(i=0; i<slice_count; i++){
|
||||||
int offset= get_slice_offset(avctx, slices_hdr, i);
|
int offset= get_slice_offset(avctx, slices_hdr, i);
|
||||||
int size;
|
int size;
|
||||||
|
|
||||||
if(i+1 == slice_count)
|
if(i+1 == slice_count)
|
||||||
size= buf_size - offset;
|
size= buf_size - offset;
|
||||||
else
|
else
|
||||||
size= get_slice_offset(avctx, slices_hdr, i+1) - offset;
|
size= get_slice_offset(avctx, slices_hdr, i+1) - offset;
|
||||||
|
|
||||||
rv10_decode_packet(avctx, buf+offset, size);
|
rv10_decode_packet(avctx, buf+offset, size);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(s->current_picture_ptr != NULL && s->mb_y>=s->mb_height){
|
if(s->current_picture_ptr != NULL && s->mb_y>=s->mb_height){
|
||||||
ff_er_frame_end(s);
|
ff_er_frame_end(s);
|
||||||
|
Loading…
Reference in New Issue
Block a user