mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-17 20:17:55 +02:00
avcodec/mpegutils: Reindent after the previous commit
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
678f1b1cf4
commit
f63c6c81d4
@ -56,7 +56,6 @@ void ff_draw_horiz_band(AVCodecContext *avctx,
|
||||
const int field_pic = picture_structure != PICT_FRAME;
|
||||
const AVFrame *src;
|
||||
int offset[AV_NUM_DATA_POINTERS];
|
||||
int i;
|
||||
|
||||
if (!avctx->draw_horiz_band)
|
||||
return;
|
||||
@ -83,7 +82,7 @@ void ff_draw_horiz_band(AVCodecContext *avctx,
|
||||
if (cur->pict_type == AV_PICTURE_TYPE_B &&
|
||||
picture_structure == PICT_FRAME &&
|
||||
avctx->codec_id != AV_CODEC_ID_SVQ3) {
|
||||
for (i = 0; i < AV_NUM_DATA_POINTERS; i++)
|
||||
for (int i = 0; i < AV_NUM_DATA_POINTERS; i++)
|
||||
offset[i] = 0;
|
||||
} else {
|
||||
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->pix_fmt);
|
||||
@ -92,7 +91,7 @@ void ff_draw_horiz_band(AVCodecContext *avctx,
|
||||
offset[0] = y * src->linesize[0];
|
||||
offset[1] =
|
||||
offset[2] = (y >> vshift) * src->linesize[1];
|
||||
for (i = 3; i < AV_NUM_DATA_POINTERS; i++)
|
||||
for (int i = 3; i < AV_NUM_DATA_POINTERS; i++)
|
||||
offset[i] = 0;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user