mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avcodec/mpegpicture: Reindent after the previous commit
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
788892d647
commit
6450cfcd10
@ -292,12 +292,9 @@ fail:
|
||||
|
||||
int ff_find_unused_picture(AVCodecContext *avctx, Picture *picture, int shared)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i < MAX_PICTURE_COUNT; i++) {
|
||||
if (!picture[i].f->buf[0])
|
||||
return i;
|
||||
}
|
||||
for (int i = 0; i < MAX_PICTURE_COUNT; i++)
|
||||
if (!picture[i].f->buf[0])
|
||||
return i;
|
||||
|
||||
av_log(avctx, AV_LOG_FATAL,
|
||||
"Internal error, picture buffer overflow\n");
|
||||
|
Loading…
Reference in New Issue
Block a user