You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
lavfi/vf_displace: move to "activate" design.
This commit is contained in:
@@ -168,7 +168,7 @@ OBJS-$(CONFIG_DELOGO_FILTER) += vf_delogo.o
|
|||||||
OBJS-$(CONFIG_DESHAKE_FILTER) += vf_deshake.o
|
OBJS-$(CONFIG_DESHAKE_FILTER) += vf_deshake.o
|
||||||
OBJS-$(CONFIG_DETELECINE_FILTER) += vf_detelecine.o
|
OBJS-$(CONFIG_DETELECINE_FILTER) += vf_detelecine.o
|
||||||
OBJS-$(CONFIG_DILATION_FILTER) += vf_neighbor.o
|
OBJS-$(CONFIG_DILATION_FILTER) += vf_neighbor.o
|
||||||
OBJS-$(CONFIG_DISPLACE_FILTER) += vf_displace.o framesync.o
|
OBJS-$(CONFIG_DISPLACE_FILTER) += vf_displace.o framesync2.o
|
||||||
OBJS-$(CONFIG_DOUBLEWEAVE_FILTER) += vf_weave.o
|
OBJS-$(CONFIG_DOUBLEWEAVE_FILTER) += vf_weave.o
|
||||||
OBJS-$(CONFIG_DRAWBOX_FILTER) += vf_drawbox.o
|
OBJS-$(CONFIG_DRAWBOX_FILTER) += vf_drawbox.o
|
||||||
OBJS-$(CONFIG_DRAWGRAPH_FILTER) += f_drawgraph.o
|
OBJS-$(CONFIG_DRAWGRAPH_FILTER) += f_drawgraph.o
|
||||||
|
@@ -23,7 +23,7 @@
|
|||||||
#include "libavutil/opt.h"
|
#include "libavutil/opt.h"
|
||||||
#include "avfilter.h"
|
#include "avfilter.h"
|
||||||
#include "formats.h"
|
#include "formats.h"
|
||||||
#include "framesync.h"
|
#include "framesync2.h"
|
||||||
#include "internal.h"
|
#include "internal.h"
|
||||||
#include "video.h"
|
#include "video.h"
|
||||||
|
|
||||||
@@ -212,9 +212,9 @@ static int process_frame(FFFrameSync *fs)
|
|||||||
AVFrame *out, *in, *xpic, *ypic;
|
AVFrame *out, *in, *xpic, *ypic;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if ((ret = ff_framesync_get_frame(&s->fs, 0, &in, 0)) < 0 ||
|
if ((ret = ff_framesync2_get_frame(&s->fs, 0, &in, 0)) < 0 ||
|
||||||
(ret = ff_framesync_get_frame(&s->fs, 1, &xpic, 0)) < 0 ||
|
(ret = ff_framesync2_get_frame(&s->fs, 1, &xpic, 0)) < 0 ||
|
||||||
(ret = ff_framesync_get_frame(&s->fs, 2, &ypic, 0)) < 0)
|
(ret = ff_framesync2_get_frame(&s->fs, 2, &ypic, 0)) < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
if (ctx->is_disabled) {
|
if (ctx->is_disabled) {
|
||||||
@@ -310,7 +310,7 @@ static int config_output(AVFilterLink *outlink)
|
|||||||
outlink->sample_aspect_ratio = srclink->sample_aspect_ratio;
|
outlink->sample_aspect_ratio = srclink->sample_aspect_ratio;
|
||||||
outlink->frame_rate = srclink->frame_rate;
|
outlink->frame_rate = srclink->frame_rate;
|
||||||
|
|
||||||
ret = ff_framesync_init(&s->fs, ctx, 3);
|
ret = ff_framesync2_init(&s->fs, ctx, 3);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
@@ -330,44 +330,35 @@ static int config_output(AVFilterLink *outlink)
|
|||||||
s->fs.opaque = s;
|
s->fs.opaque = s;
|
||||||
s->fs.on_event = process_frame;
|
s->fs.on_event = process_frame;
|
||||||
|
|
||||||
return ff_framesync_configure(&s->fs);
|
return ff_framesync2_configure(&s->fs);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
|
static int activate(AVFilterContext *ctx)
|
||||||
{
|
{
|
||||||
DisplaceContext *s = inlink->dst->priv;
|
DisplaceContext *s = ctx->priv;
|
||||||
return ff_framesync_filter_frame(&s->fs, inlink, buf);
|
return ff_framesync2_activate(&s->fs);
|
||||||
}
|
|
||||||
|
|
||||||
static int request_frame(AVFilterLink *outlink)
|
|
||||||
{
|
|
||||||
DisplaceContext *s = outlink->src->priv;
|
|
||||||
return ff_framesync_request_frame(&s->fs, outlink);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static av_cold void uninit(AVFilterContext *ctx)
|
static av_cold void uninit(AVFilterContext *ctx)
|
||||||
{
|
{
|
||||||
DisplaceContext *s = ctx->priv;
|
DisplaceContext *s = ctx->priv;
|
||||||
|
|
||||||
ff_framesync_uninit(&s->fs);
|
ff_framesync2_uninit(&s->fs);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const AVFilterPad displace_inputs[] = {
|
static const AVFilterPad displace_inputs[] = {
|
||||||
{
|
{
|
||||||
.name = "source",
|
.name = "source",
|
||||||
.type = AVMEDIA_TYPE_VIDEO,
|
.type = AVMEDIA_TYPE_VIDEO,
|
||||||
.filter_frame = filter_frame,
|
|
||||||
.config_props = config_input,
|
.config_props = config_input,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
.name = "xmap",
|
.name = "xmap",
|
||||||
.type = AVMEDIA_TYPE_VIDEO,
|
.type = AVMEDIA_TYPE_VIDEO,
|
||||||
.filter_frame = filter_frame,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
.name = "ymap",
|
.name = "ymap",
|
||||||
.type = AVMEDIA_TYPE_VIDEO,
|
.type = AVMEDIA_TYPE_VIDEO,
|
||||||
.filter_frame = filter_frame,
|
|
||||||
},
|
},
|
||||||
{ NULL }
|
{ NULL }
|
||||||
};
|
};
|
||||||
@@ -377,7 +368,6 @@ static const AVFilterPad displace_outputs[] = {
|
|||||||
.name = "default",
|
.name = "default",
|
||||||
.type = AVMEDIA_TYPE_VIDEO,
|
.type = AVMEDIA_TYPE_VIDEO,
|
||||||
.config_props = config_output,
|
.config_props = config_output,
|
||||||
.request_frame = request_frame,
|
|
||||||
},
|
},
|
||||||
{ NULL }
|
{ NULL }
|
||||||
};
|
};
|
||||||
@@ -388,6 +378,7 @@ AVFilter ff_vf_displace = {
|
|||||||
.priv_size = sizeof(DisplaceContext),
|
.priv_size = sizeof(DisplaceContext),
|
||||||
.uninit = uninit,
|
.uninit = uninit,
|
||||||
.query_formats = query_formats,
|
.query_formats = query_formats,
|
||||||
|
.activate = activate,
|
||||||
.inputs = displace_inputs,
|
.inputs = displace_inputs,
|
||||||
.outputs = displace_outputs,
|
.outputs = displace_outputs,
|
||||||
.priv_class = &displace_class,
|
.priv_class = &displace_class,
|
||||||
|
Reference in New Issue
Block a user