summaryrefslogtreecommitdiff
path: root/libavfilter/vf_lut2.c
diff options
context:
space:
mode:
authorNicolas George <george@nsup.org>2017-08-31 19:47:37 +0200
committerNicolas George <george@nsup.org>2017-09-12 11:03:51 +0200
commit5f5dcf44e3c40da8c2334b9d2e62f30739d644c0 (patch)
tree54f67261180b1b02ed30e2e0995525d4ba725acc /libavfilter/vf_lut2.c
parent1b8e061cc574d7d5ce7def14c5648eaef07d9187 (diff)
downloadffmpeg-5f5dcf44e3c40da8c2334b9d2e62f30739d644c0.tar.gz
lavfi: rename framesync2 to framesync.
Diffstat (limited to 'libavfilter/vf_lut2.c')
-rw-r--r--libavfilter/vf_lut2.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libavfilter/vf_lut2.c b/libavfilter/vf_lut2.c
index ba599c3d14..585d121ca3 100644
--- a/libavfilter/vf_lut2.c
+++ b/libavfilter/vf_lut2.c
@@ -28,7 +28,7 @@
#include "formats.h"
#include "internal.h"
#include "video.h"
-#include "framesync2.h"
+#include "framesync.h"
static const char *const var_names[] = {
"w", ///< width of the input video
@@ -85,7 +85,7 @@ static av_cold void uninit(AVFilterContext *ctx)
LUT2Context *s = ctx->priv;
int i;
- ff_framesync2_uninit(&s->fs);
+ ff_framesync_uninit(&s->fs);
av_frame_free(&s->prev_frame);
for (i = 0; i < 4; i++) {
@@ -216,8 +216,8 @@ static int process_frame(FFFrameSync *fs)
AVFrame *out, *srcx = NULL, *srcy = NULL;
int ret;
- if ((ret = ff_framesync2_get_frame(&s->fs, 0, &srcx, 0)) < 0 ||
- (ret = ff_framesync2_get_frame(&s->fs, 1, &srcy, 0)) < 0)
+ if ((ret = ff_framesync_get_frame(&s->fs, 0, &srcx, 0)) < 0 ||
+ (ret = ff_framesync_get_frame(&s->fs, 1, &srcy, 0)) < 0)
return ret;
if (ctx->is_disabled || !srcy) {
@@ -327,7 +327,7 @@ static int lut2_config_output(AVFilterLink *outlink)
outlink->sample_aspect_ratio = srcx->sample_aspect_ratio;
outlink->frame_rate = srcx->frame_rate;
- if ((ret = ff_framesync2_init(&s->fs, ctx, 2)) < 0)
+ if ((ret = ff_framesync_init(&s->fs, ctx, 2)) < 0)
return ret;
in = s->fs.in;
@@ -345,13 +345,13 @@ static int lut2_config_output(AVFilterLink *outlink)
if ((ret = config_output(outlink)) < 0)
return ret;
- return ff_framesync2_configure(&s->fs);
+ return ff_framesync_configure(&s->fs);
}
static int activate(AVFilterContext *ctx)
{
LUT2Context *s = ctx->priv;
- return ff_framesync2_activate(&s->fs);
+ return ff_framesync_activate(&s->fs);
}
static const AVFilterPad inputs[] = {