mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-12 10:29:39 +00:00
avfilter/dualinput: remove unused variable
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
f46a3e3d6e
commit
88c8ed18c9
@ -37,7 +37,6 @@ static int process_frame(FFFrameSync *fs)
|
|||||||
mainpic = s->process(ctx, mainpic, secondpic);
|
mainpic = s->process(ctx, mainpic, secondpic);
|
||||||
ret = ff_filter_frame(ctx->outputs[0], mainpic);
|
ret = ff_filter_frame(ctx->outputs[0], mainpic);
|
||||||
av_assert1(ret != AVERROR(EAGAIN));
|
av_assert1(ret != AVERROR(EAGAIN));
|
||||||
s->frame_requested = 0;
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -33,7 +33,6 @@ typedef struct {
|
|||||||
FFFrameSync fs;
|
FFFrameSync fs;
|
||||||
FFFrameSyncIn second_input; /* must be immediately after fs */
|
FFFrameSyncIn second_input; /* must be immediately after fs */
|
||||||
|
|
||||||
uint8_t frame_requested;
|
|
||||||
AVFrame *(*process)(AVFilterContext *ctx, AVFrame *main, const AVFrame *second);
|
AVFrame *(*process)(AVFilterContext *ctx, AVFrame *main, const AVFrame *second);
|
||||||
int shortest; ///< terminate stream when the second input terminates
|
int shortest; ///< terminate stream when the second input terminates
|
||||||
int repeatlast; ///< repeat last second frame
|
int repeatlast; ///< repeat last second frame
|
||||||
|
Loading…
Reference in New Issue
Block a user