mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
libx264: fix indentation.
This commit is contained in:
parent
24947d4988
commit
e15e2a6d2a
@ -147,12 +147,12 @@ static int X264_frame(AVCodecContext *ctx, uint8_t *buf,
|
|||||||
}
|
}
|
||||||
|
|
||||||
do {
|
do {
|
||||||
if (x264_encoder_encode(x4->enc, &nal, &nnal, frame? &x4->pic: NULL, &pic_out) < 0)
|
if (x264_encoder_encode(x4->enc, &nal, &nnal, frame? &x4->pic: NULL, &pic_out) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
bufsize = encode_nals(ctx, buf, bufsize, nal, nnal, 0);
|
bufsize = encode_nals(ctx, buf, bufsize, nal, nnal, 0);
|
||||||
if (bufsize < 0)
|
if (bufsize < 0)
|
||||||
return -1;
|
return -1;
|
||||||
} while (!bufsize && !frame && x264_encoder_delayed_frames(x4->enc));
|
} while (!bufsize && !frame && x264_encoder_delayed_frames(x4->enc));
|
||||||
|
|
||||||
/* FIXME: libx264 now provides DTS, but AVFrame doesn't have a field for it. */
|
/* FIXME: libx264 now provides DTS, but AVFrame doesn't have a field for it. */
|
||||||
|
Loading…
Reference in New Issue
Block a user