Browse Source

avfilter/dualinput: remove unused variable

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n2.1
Paul B Mahol 11 years ago
parent
commit
88c8ed18c9
2 changed files with 0 additions and 2 deletions
  1. +0
    -1
      libavfilter/dualinput.c
  2. +0
    -1
      libavfilter/dualinput.h

+ 0
- 1
libavfilter/dualinput.c View File

@@ -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;
}



+ 0
- 1
libavfilter/dualinput.h View File

@@ -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


Loading…
Cancel
Save