Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas George <george@nsup.org>2017-08-31 20:47:37 +0300
committerNicolas George <george@nsup.org>2017-09-12 12:03:51 +0300
commit5f5dcf44e3c40da8c2334b9d2e62f30739d644c0 (patch)
tree54f67261180b1b02ed30e2e0995525d4ba725acc /libavfilter/vf_maskedmerge.c
parent1b8e061cc574d7d5ce7def14c5648eaef07d9187 (diff)
lavfi: rename framesync2 to framesync.
Diffstat (limited to 'libavfilter/vf_maskedmerge.c')
-rw-r--r--libavfilter/vf_maskedmerge.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libavfilter/vf_maskedmerge.c b/libavfilter/vf_maskedmerge.c
index cd11c959f6..d31b92659e 100644
--- a/libavfilter/vf_maskedmerge.c
+++ b/libavfilter/vf_maskedmerge.c
@@ -71,9 +71,9 @@ static int process_frame(FFFrameSync *fs)
AVFrame *out, *base, *overlay, *mask;
int ret;
- if ((ret = ff_framesync2_get_frame(&s->fs, 0, &base, 0)) < 0 ||
- (ret = ff_framesync2_get_frame(&s->fs, 1, &overlay, 0)) < 0 ||
- (ret = ff_framesync2_get_frame(&s->fs, 2, &mask, 0)) < 0)
+ if ((ret = ff_framesync_get_frame(&s->fs, 0, &base, 0)) < 0 ||
+ (ret = ff_framesync_get_frame(&s->fs, 1, &overlay, 0)) < 0 ||
+ (ret = ff_framesync_get_frame(&s->fs, 2, &mask, 0)) < 0)
return ret;
if (ctx->is_disabled) {
@@ -232,7 +232,7 @@ static int config_output(AVFilterLink *outlink)
if ((ret = av_image_fill_linesizes(s->linesize, outlink->format, outlink->w)) < 0)
return ret;
- 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;
@@ -251,20 +251,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)
{
MaskedMergeContext *s = ctx->priv;
- return ff_framesync2_activate(&s->fs);
+ return ff_framesync_activate(&s->fs);
}
static av_cold void uninit(AVFilterContext *ctx)
{
MaskedMergeContext *s = ctx->priv;
- ff_framesync2_uninit(&s->fs);
+ ff_framesync_uninit(&s->fs);
}
static const AVFilterPad maskedmerge_inputs[] = {