mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
lavfi/vf_idet: reindent after last commit.
This commit is contained in:
parent
7635242ae5
commit
598f8a7afa
@ -313,24 +313,22 @@ static int request_frame(AVFilterLink *link)
|
||||
{
|
||||
AVFilterContext *ctx = link->src;
|
||||
IDETContext *idet = ctx->priv;
|
||||
int ret;
|
||||
|
||||
// TODO reindent
|
||||
int ret;
|
||||
if (idet->eof)
|
||||
return AVERROR_EOF;
|
||||
|
||||
if (idet->eof)
|
||||
return AVERROR_EOF;
|
||||
ret = ff_request_frame(link->src->inputs[0]);
|
||||
|
||||
ret = ff_request_frame(link->src->inputs[0]);
|
||||
if (ret == AVERROR_EOF && idet->cur && !idet->analyze_interlaced_flag_done) {
|
||||
AVFrame *next = av_frame_clone(idet->next);
|
||||
|
||||
if (ret == AVERROR_EOF && idet->cur && !idet->analyze_interlaced_flag_done) {
|
||||
AVFrame *next = av_frame_clone(idet->next);
|
||||
if (!next)
|
||||
return AVERROR(ENOMEM);
|
||||
|
||||
if (!next)
|
||||
return AVERROR(ENOMEM);
|
||||
|
||||
ret = filter_frame(link->src->inputs[0], next);
|
||||
idet->eof = 1;
|
||||
}
|
||||
ret = filter_frame(link->src->inputs[0], next);
|
||||
idet->eof = 1;
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user