summaryrefslogtreecommitdiff
path: root/libavfilter/vf_maskedclamp.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/vf_maskedclamp.c')
-rw-r--r--libavfilter/vf_maskedclamp.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libavfilter/vf_maskedclamp.c b/libavfilter/vf_maskedclamp.c
index 81ba05147c..67a979f8c0 100644
--- a/libavfilter/vf_maskedclamp.c
+++ b/libavfilter/vf_maskedclamp.c
@@ -25,7 +25,7 @@
#include "formats.h"
#include "internal.h"
#include "video.h"
-#include "framesync2.h"
+#include "framesync.h"
#define OFFSET(x) offsetof(MaskedClampContext, x)
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
@@ -93,9 +93,9 @@ static int process_frame(FFFrameSync *fs)
AVFrame *out, *base, *dark, *bright;
int ret;
- if ((ret = ff_framesync2_get_frame(&s->fs, 0, &base, 0)) < 0 ||
- (ret = ff_framesync2_get_frame(&s->fs, 1, &dark, 0)) < 0 ||
- (ret = ff_framesync2_get_frame(&s->fs, 2, &bright, 0)) < 0)
+ if ((ret = ff_framesync_get_frame(&s->fs, 0, &base, 0)) < 0 ||
+ (ret = ff_framesync_get_frame(&s->fs, 1, &dark, 0)) < 0 ||
+ (ret = ff_framesync_get_frame(&s->fs, 2, &bright, 0)) < 0)
return ret;
if (ctx->is_disabled) {
@@ -265,7 +265,7 @@ static int config_output(AVFilterLink *outlink)
outlink->sample_aspect_ratio = base->sample_aspect_ratio;
outlink->frame_rate = base->frame_rate;
- if ((ret = ff_framesync2_init(&s->fs, ctx, 3)) < 0)
+ if ((ret = ff_framesync_init(&s->fs, ctx, 3)) < 0)
return ret;
in = s->fs.in;
@@ -284,20 +284,20 @@ 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)
{
MaskedClampContext *s = ctx->priv;
- return ff_framesync2_activate(&s->fs);
+ return ff_framesync_activate(&s->fs);
}
static av_cold void uninit(AVFilterContext *ctx)
{
MaskedClampContext *s = ctx->priv;
- ff_framesync2_uninit(&s->fs);
+ ff_framesync_uninit(&s->fs);
}
static const AVFilterPad maskedclamp_inputs[] = {