libavfilter/dualinput.c
43286028
 /*
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #include "dualinput.h"
 #include "libavutil/timestamp.h"
 
231e5015
 static int process_frame(FFFrameSync *fs)
43286028
 {
231e5015
     AVFilterContext *ctx = fs->parent;
     FFDualInputContext *s = fs->opaque;
     AVFrame *mainpic = NULL, *secondpic = NULL;
     int ret = 0;
 
     if ((ret = ff_framesync_get_frame(&s->fs, 0, &mainpic,   1)) < 0 ||
         (ret = ff_framesync_get_frame(&s->fs, 1, &secondpic, 0)) < 0) {
         av_frame_free(&mainpic);
         return ret;
43286028
     }
231e5015
     av_assert0(mainpic);
     mainpic->pts = av_rescale_q(mainpic->pts, s->fs.time_base, ctx->outputs[0]->time_base);
     if (secondpic && !ctx->is_disabled)
         mainpic = s->process(ctx, mainpic, secondpic);
43286028
     ret = ff_filter_frame(ctx->outputs[0], mainpic);
     av_assert1(ret != AVERROR(EAGAIN));
     return ret;
 }
 
231e5015
 int ff_dualinput_init(AVFilterContext *ctx, FFDualInputContext *s)
43286028
 {
231e5015
     FFFrameSyncIn *in = s->fs.in;
 
     ff_framesync_init(&s->fs, ctx, 2);
     s->fs.opaque = s;
     s->fs.on_event = process_frame;
     in[0].time_base = ctx->inputs[0]->time_base;
     in[1].time_base = ctx->inputs[1]->time_base;
     in[0].sync   = 2;
     in[0].before = EXT_STOP;
     in[0].after  = EXT_INFINITY;
     in[1].sync   = 1;
     in[1].before = EXT_NULL;
     in[1].after  = EXT_INFINITY;
 
     if (s->shortest)
2dc5980d
         in[0].after = in[1].after = EXT_STOP;
231e5015
     if (!s->repeatlast) {
cddbe9fa
         in[1].after = EXT_NULL;
231e5015
         in[1].sync  = 0;
     }
43286028
 
231e5015
     return ff_framesync_configure(&s->fs);
43286028
 }
 
cd1b22d8
 int ff_dualinput_filter_frame(FFDualInputContext *s,
43286028
                                    AVFilterLink *inlink, AVFrame *in)
 {
231e5015
     return ff_framesync_filter_frame(&s->fs, inlink, in);
43286028
 }
 
 int ff_dualinput_request_frame(FFDualInputContext *s, AVFilterLink *outlink)
 {
231e5015
     return ff_framesync_request_frame(&s->fs, outlink);
43286028
 }
 
 void ff_dualinput_uninit(FFDualInputContext *s)
 {
231e5015
     ff_framesync_uninit(&s->fs);
43286028
 }