mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/mpegvideo_enc: Reindentation
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
5aaaa7dbee
commit
f5220475de
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue