summaryrefslogtreecommitdiff
path: root/libavfilter/vf_remap.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/vf_remap.c')
-rw-r--r--libavfilter/vf_remap.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libavfilter/vf_remap.c b/libavfilter/vf_remap.c
index a62ec4c183..d24284703b 100644
--- a/libavfilter/vf_remap.c
+++ b/libavfilter/vf_remap.c
@@ -41,7 +41,7 @@
#include "libavutil/opt.h"
#include "avfilter.h"
#include "formats.h"
-#include "framesync2.h"
+#include "framesync.h"
#include "internal.h"
#include "video.h"
@@ -286,9 +286,9 @@ static int process_frame(FFFrameSync *fs)
AVFrame *out, *in, *xpic, *ypic;
int ret;
- if ((ret = ff_framesync2_get_frame(&s->fs, 0, &in, 0)) < 0 ||
- (ret = ff_framesync2_get_frame(&s->fs, 1, &xpic, 0)) < 0 ||
- (ret = ff_framesync2_get_frame(&s->fs, 2, &ypic, 0)) < 0)
+ if ((ret = ff_framesync_get_frame(&s->fs, 0, &in, 0)) < 0 ||
+ (ret = ff_framesync_get_frame(&s->fs, 1, &xpic, 0)) < 0 ||
+ (ret = ff_framesync_get_frame(&s->fs, 2, &ypic, 0)) < 0)
return ret;
if (ctx->is_disabled) {
@@ -333,7 +333,7 @@ static int config_output(AVFilterLink *outlink)
outlink->sample_aspect_ratio = srclink->sample_aspect_ratio;
outlink->frame_rate = srclink->frame_rate;
- ret = ff_framesync2_init(&s->fs, ctx, 3);
+ ret = ff_framesync_init(&s->fs, ctx, 3);
if (ret < 0)
return ret;
@@ -353,13 +353,13 @@ static int config_output(AVFilterLink *outlink)
s->fs.opaque = s;
s->fs.on_event = process_frame;
- return ff_framesync2_configure(&s->fs);
+ return ff_framesync_configure(&s->fs);
}
static int activate(AVFilterContext *ctx)
{
RemapContext *s = ctx->priv;
- return ff_framesync2_activate(&s->fs);
+ return ff_framesync_activate(&s->fs);
}
@@ -367,7 +367,7 @@ static av_cold void uninit(AVFilterContext *ctx)
{
RemapContext *s = ctx->priv;
- ff_framesync2_uninit(&s->fs);
+ ff_framesync_uninit(&s->fs);
}
static const AVFilterPad remap_inputs[] = {