mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-28 10:22:10 +00:00
lavfi/vf_mergeplanes: move to "activate" design.
This commit is contained in:
parent
a5e3b0c193
commit
0bc331bd57
@ -228,7 +228,7 @@ OBJS-$(CONFIG_LUTYUV_FILTER) += vf_lut.o
|
|||||||
OBJS-$(CONFIG_MASKEDCLAMP_FILTER) += vf_maskedclamp.o framesync.o
|
OBJS-$(CONFIG_MASKEDCLAMP_FILTER) += vf_maskedclamp.o framesync.o
|
||||||
OBJS-$(CONFIG_MASKEDMERGE_FILTER) += vf_maskedmerge.o framesync2.o
|
OBJS-$(CONFIG_MASKEDMERGE_FILTER) += vf_maskedmerge.o framesync2.o
|
||||||
OBJS-$(CONFIG_MCDEINT_FILTER) += vf_mcdeint.o
|
OBJS-$(CONFIG_MCDEINT_FILTER) += vf_mcdeint.o
|
||||||
OBJS-$(CONFIG_MERGEPLANES_FILTER) += vf_mergeplanes.o framesync.o
|
OBJS-$(CONFIG_MERGEPLANES_FILTER) += vf_mergeplanes.o framesync2.o
|
||||||
OBJS-$(CONFIG_MESTIMATE_FILTER) += vf_mestimate.o motion_estimation.o
|
OBJS-$(CONFIG_MESTIMATE_FILTER) += vf_mestimate.o motion_estimation.o
|
||||||
OBJS-$(CONFIG_METADATA_FILTER) += f_metadata.o
|
OBJS-$(CONFIG_METADATA_FILTER) += f_metadata.o
|
||||||
OBJS-$(CONFIG_MIDEQUALIZER_FILTER) += vf_midequalizer.o framesync2.o
|
OBJS-$(CONFIG_MIDEQUALIZER_FILTER) += vf_midequalizer.o framesync2.o
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
#include "libavutil/pixdesc.h"
|
#include "libavutil/pixdesc.h"
|
||||||
#include "avfilter.h"
|
#include "avfilter.h"
|
||||||
#include "internal.h"
|
#include "internal.h"
|
||||||
#include "framesync.h"
|
#include "framesync2.h"
|
||||||
|
|
||||||
typedef struct InputParam {
|
typedef struct InputParam {
|
||||||
int depth[4];
|
int depth[4];
|
||||||
@ -58,12 +58,6 @@ static const AVOption mergeplanes_options[] = {
|
|||||||
|
|
||||||
AVFILTER_DEFINE_CLASS(mergeplanes);
|
AVFILTER_DEFINE_CLASS(mergeplanes);
|
||||||
|
|
||||||
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
|
|
||||||
{
|
|
||||||
MergePlanesContext *s = inlink->dst->priv;
|
|
||||||
return ff_framesync_filter_frame(&s->fs, inlink, in);
|
|
||||||
}
|
|
||||||
|
|
||||||
static av_cold int init(AVFilterContext *ctx)
|
static av_cold int init(AVFilterContext *ctx)
|
||||||
{
|
{
|
||||||
MergePlanesContext *s = ctx->priv;
|
MergePlanesContext *s = ctx->priv;
|
||||||
@ -101,7 +95,6 @@ static av_cold int init(AVFilterContext *ctx)
|
|||||||
pad.name = av_asprintf("in%d", i);
|
pad.name = av_asprintf("in%d", i);
|
||||||
if (!pad.name)
|
if (!pad.name)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
pad.filter_frame = filter_frame;
|
|
||||||
|
|
||||||
if ((ret = ff_insert_inpad(ctx, i, &pad)) < 0){
|
if ((ret = ff_insert_inpad(ctx, i, &pad)) < 0){
|
||||||
av_freep(&pad.name);
|
av_freep(&pad.name);
|
||||||
@ -150,7 +143,7 @@ static int process_frame(FFFrameSync *fs)
|
|||||||
int i, ret;
|
int i, ret;
|
||||||
|
|
||||||
for (i = 0; i < s->nb_inputs; i++) {
|
for (i = 0; i < s->nb_inputs; i++) {
|
||||||
if ((ret = ff_framesync_get_frame(&s->fs, i, &in[i], 0)) < 0)
|
if ((ret = ff_framesync2_get_frame(&s->fs, i, &in[i], 0)) < 0)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -179,7 +172,7 @@ static int config_output(AVFilterLink *outlink)
|
|||||||
FFFrameSyncIn *in;
|
FFFrameSyncIn *in;
|
||||||
int i, ret;
|
int i, ret;
|
||||||
|
|
||||||
if ((ret = ff_framesync_init(&s->fs, ctx, s->nb_inputs)) < 0)
|
if ((ret = ff_framesync2_init(&s->fs, ctx, s->nb_inputs)) < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
in = s->fs.in;
|
in = s->fs.in;
|
||||||
@ -272,15 +265,15 @@ static int config_output(AVFilterLink *outlink)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return ff_framesync_configure(&s->fs);
|
return ff_framesync2_configure(&s->fs);
|
||||||
fail:
|
fail:
|
||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int request_frame(AVFilterLink *outlink)
|
static int activate(AVFilterContext *ctx)
|
||||||
{
|
{
|
||||||
MergePlanesContext *s = outlink->src->priv;
|
MergePlanesContext *s = ctx->priv;
|
||||||
return ff_framesync_request_frame(&s->fs, outlink);
|
return ff_framesync2_activate(&s->fs);
|
||||||
}
|
}
|
||||||
|
|
||||||
static av_cold void uninit(AVFilterContext *ctx)
|
static av_cold void uninit(AVFilterContext *ctx)
|
||||||
@ -288,7 +281,7 @@ static av_cold void uninit(AVFilterContext *ctx)
|
|||||||
MergePlanesContext *s = ctx->priv;
|
MergePlanesContext *s = ctx->priv;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
ff_framesync_uninit(&s->fs);
|
ff_framesync2_uninit(&s->fs);
|
||||||
|
|
||||||
for (i = 0; i < ctx->nb_inputs; i++)
|
for (i = 0; i < ctx->nb_inputs; i++)
|
||||||
av_freep(&ctx->input_pads[i].name);
|
av_freep(&ctx->input_pads[i].name);
|
||||||
@ -299,7 +292,6 @@ static const AVFilterPad mergeplanes_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 }
|
||||||
};
|
};
|
||||||
@ -312,6 +304,7 @@ AVFilter ff_vf_mergeplanes = {
|
|||||||
.init = init,
|
.init = init,
|
||||||
.uninit = uninit,
|
.uninit = uninit,
|
||||||
.query_formats = query_formats,
|
.query_formats = query_formats,
|
||||||
|
.activate = activate,
|
||||||
.inputs = NULL,
|
.inputs = NULL,
|
||||||
.outputs = mergeplanes_outputs,
|
.outputs = mergeplanes_outputs,
|
||||||
.flags = AVFILTER_FLAG_DYNAMIC_INPUTS,
|
.flags = AVFILTER_FLAG_DYNAMIC_INPUTS,
|
||||||
|
Loading…
Reference in New Issue
Block a user