1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-02-04 06:08:26 +02:00

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

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;