Commit 88c8ed18 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/dualinput: remove unused variable

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent f46a3e3d
......@@ -37,7 +37,6 @@ static int process_frame(FFFrameSync *fs)
mainpic = s->process(ctx, mainpic, secondpic);
ret = ff_filter_frame(ctx->outputs[0], mainpic);
av_assert1(ret != AVERROR(EAGAIN));
s->frame_requested = 0;
return ret;
}
......
......@@ -33,7 +33,6 @@ typedef struct {
FFFrameSync fs;
FFFrameSyncIn second_input; /* must be immediately after fs */
uint8_t frame_requested;
AVFrame *(*process)(AVFilterContext *ctx, AVFrame *main, const AVFrame *second);
int shortest; ///< terminate stream when the second input terminates
int repeatlast; ///< repeat last second frame
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment