avcodec/mpegvideo_enc: Reindentation

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2023-10-04 22:10:50 +02:00
parent 5aaaa7dbee
commit f5220475de
1 changed files with 38 additions and 38 deletions

View File

@ -1177,7 +1177,7 @@ static int load_input_picture(MpegEncContext *s, const AVFrame *pic_arg)
&h_chroma_shift,
&v_chroma_shift);
for (i = 0; i < 3; i++) {
for (int i = 0; i < 3; i++) {
int src_stride = pic_arg->linesize[i];
int dst_stride = i ? s->uvlinesize : s->linesize;
int h_shift = i ? h_chroma_shift : 0;