mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/af_afir: switch to activate
This commit is contained in:
parent
da7a0ac979
commit
876101cf41
|
@ -35,6 +35,7 @@
|
||||||
|
|
||||||
#include "audio.h"
|
#include "audio.h"
|
||||||
#include "avfilter.h"
|
#include "avfilter.h"
|
||||||
|
#include "filters.h"
|
||||||
#include "formats.h"
|
#include "formats.h"
|
||||||
#include "internal.h"
|
#include "internal.h"
|
||||||
#include "af_afir.h"
|
#include "af_afir.h"
|
||||||
|
@ -116,13 +117,13 @@ static int fir_channel(AVFilterContext *ctx, void *arg, int ch, int nb_jobs)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fir_frame(AudioFIRContext *s, AVFilterLink *outlink)
|
static int fir_frame(AudioFIRContext *s, AVFrame *in, AVFilterLink *outlink)
|
||||||
{
|
{
|
||||||
AVFilterContext *ctx = outlink->src;
|
AVFilterContext *ctx = outlink->src;
|
||||||
AVFrame *out = NULL;
|
AVFrame *out = NULL;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
s->nb_samples = FFMIN(s->part_size, av_audio_fifo_size(s->fifo[0]));
|
s->nb_samples = in->nb_samples;
|
||||||
|
|
||||||
if (!s->want_skip) {
|
if (!s->want_skip) {
|
||||||
out = ff_get_audio_buffer(outlink, s->nb_samples);
|
out = ff_get_audio_buffer(outlink, s->nb_samples);
|
||||||
|
@ -130,20 +131,13 @@ static int fir_frame(AudioFIRContext *s, AVFilterLink *outlink)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
}
|
}
|
||||||
|
|
||||||
s->in[0] = ff_get_audio_buffer(ctx->inputs[0], s->nb_samples);
|
if (s->pts == AV_NOPTS_VALUE)
|
||||||
if (!s->in[0]) {
|
s->pts = in->pts;
|
||||||
av_frame_free(&out);
|
s->in[0] = in;
|
||||||
return AVERROR(ENOMEM);
|
|
||||||
}
|
|
||||||
|
|
||||||
av_audio_fifo_peek(s->fifo[0], (void **)s->in[0]->extended_data, s->nb_samples);
|
|
||||||
|
|
||||||
ctx->internal->execute(ctx, fir_channel, out, NULL, outlink->channels);
|
ctx->internal->execute(ctx, fir_channel, out, NULL, outlink->channels);
|
||||||
|
|
||||||
s->part_index = (s->part_index + 1) % s->nb_partitions;
|
s->part_index = (s->part_index + 1) % s->nb_partitions;
|
||||||
|
|
||||||
av_audio_fifo_drain(s->fifo[0], s->nb_samples);
|
|
||||||
|
|
||||||
if (!s->want_skip) {
|
if (!s->want_skip) {
|
||||||
out->pts = s->pts;
|
out->pts = s->pts;
|
||||||
if (s->pts != AV_NOPTS_VALUE)
|
if (s->pts != AV_NOPTS_VALUE)
|
||||||
|
@ -154,7 +148,7 @@ static int fir_frame(AudioFIRContext *s, AVFilterLink *outlink)
|
||||||
if (s->index == 3)
|
if (s->index == 3)
|
||||||
s->index = 0;
|
s->index = 0;
|
||||||
|
|
||||||
av_frame_free(&s->in[0]);
|
av_frame_free(&in);
|
||||||
|
|
||||||
if (s->want_skip == 1) {
|
if (s->want_skip == 1) {
|
||||||
s->want_skip = 0;
|
s->want_skip = 0;
|
||||||
|
@ -287,7 +281,7 @@ static int convert_coeffs(AVFilterContext *ctx)
|
||||||
AudioFIRContext *s = ctx->priv;
|
AudioFIRContext *s = ctx->priv;
|
||||||
int i, ch, n, N;
|
int i, ch, n, N;
|
||||||
|
|
||||||
s->nb_taps = av_audio_fifo_size(s->fifo[1]);
|
s->nb_taps = av_audio_fifo_size(s->fifo);
|
||||||
if (s->nb_taps <= 0)
|
if (s->nb_taps <= 0)
|
||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
|
|
||||||
|
@ -334,7 +328,7 @@ static int convert_coeffs(AVFilterContext *ctx)
|
||||||
if (!s->buffer)
|
if (!s->buffer)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
|
|
||||||
av_audio_fifo_read(s->fifo[1], (void **)s->in[1]->extended_data, s->nb_taps);
|
av_audio_fifo_read(s->fifo, (void **)s->in[1]->extended_data, s->nb_taps);
|
||||||
|
|
||||||
if (s->response)
|
if (s->response)
|
||||||
draw_response(ctx, s->video);
|
draw_response(ctx, s->video);
|
||||||
|
@ -406,13 +400,13 @@ static int read_ir(AVFilterLink *link, AVFrame *frame)
|
||||||
AudioFIRContext *s = ctx->priv;
|
AudioFIRContext *s = ctx->priv;
|
||||||
int nb_taps, max_nb_taps, ret;
|
int nb_taps, max_nb_taps, ret;
|
||||||
|
|
||||||
ret = av_audio_fifo_write(s->fifo[1], (void **)frame->extended_data,
|
ret = av_audio_fifo_write(s->fifo, (void **)frame->extended_data,
|
||||||
frame->nb_samples);
|
frame->nb_samples);
|
||||||
av_frame_free(&frame);
|
av_frame_free(&frame);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
nb_taps = av_audio_fifo_size(s->fifo[1]);
|
nb_taps = av_audio_fifo_size(s->fifo);
|
||||||
max_nb_taps = s->max_ir_len * ctx->outputs[0]->sample_rate;
|
max_nb_taps = s->max_ir_len * ctx->outputs[0]->sample_rate;
|
||||||
if (nb_taps > max_nb_taps) {
|
if (nb_taps > max_nb_taps) {
|
||||||
av_log(ctx, AV_LOG_ERROR, "Too big number of coefficients: %d > %d.\n", nb_taps, max_nb_taps);
|
av_log(ctx, AV_LOG_ERROR, "Too big number of coefficients: %d > %d.\n", nb_taps, max_nb_taps);
|
||||||
|
@ -422,22 +416,40 @@ static int read_ir(AVFilterLink *link, AVFrame *frame)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int filter_frame(AVFilterLink *link, AVFrame *frame)
|
static int activate(AVFilterContext *ctx)
|
||||||
{
|
{
|
||||||
AVFilterContext *ctx = link->dst;
|
|
||||||
AudioFIRContext *s = ctx->priv;
|
AudioFIRContext *s = ctx->priv;
|
||||||
AVFilterLink *outlink = ctx->outputs[0];
|
AVFilterLink *outlink = ctx->outputs[0];
|
||||||
int ret;
|
AVFrame *in = NULL;
|
||||||
|
int ret, status;
|
||||||
|
int64_t pts;
|
||||||
|
|
||||||
ret = av_audio_fifo_write(s->fifo[0], (void **)frame->extended_data,
|
FF_FILTER_FORWARD_STATUS_BACK_ALL(ctx->outputs[0], ctx);
|
||||||
frame->nb_samples);
|
if (s->response)
|
||||||
if (ret > 0 && s->pts == AV_NOPTS_VALUE)
|
FF_FILTER_FORWARD_STATUS_BACK_ALL(ctx->outputs[1], ctx);
|
||||||
s->pts = frame->pts;
|
if (!s->eof_coeffs) {
|
||||||
|
AVFrame *ir = NULL;
|
||||||
|
|
||||||
av_frame_free(&frame);
|
if ((ret = ff_inlink_consume_frame(ctx->inputs[1], &ir)) > 0) {
|
||||||
|
ret = read_ir(ctx->inputs[1], ir);
|
||||||
|
if (ret < 0)
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
if (ret < 0)
|
||||||
|
return ret;
|
||||||
|
|
||||||
if (ret < 0)
|
if (ff_inlink_acknowledge_status(ctx->inputs[1], &status, &pts)) {
|
||||||
return ret;
|
if (status == AVERROR_EOF) {
|
||||||
|
s->eof_coeffs = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!s->eof_coeffs) {
|
||||||
|
if (ff_outlink_frame_wanted(ctx->outputs[0]))
|
||||||
|
ff_inlink_request_frame(ctx->inputs[1]);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!s->have_coeffs && s->eof_coeffs) {
|
if (!s->have_coeffs && s->eof_coeffs) {
|
||||||
ret = convert_coeffs(ctx);
|
ret = convert_coeffs(ctx);
|
||||||
|
@ -445,60 +457,54 @@ static int filter_frame(AVFilterLink *link, AVFrame *frame)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (s->response && s->have_coeffs) {
|
if (s->need_padding) {
|
||||||
s->video->pts = s->pts;
|
in = ff_get_audio_buffer(outlink, s->part_size);
|
||||||
ret = ff_filter_frame(ctx->outputs[1], av_frame_clone(s->video));
|
if (!in)
|
||||||
|
return AVERROR(ENOMEM);
|
||||||
|
s->need_padding = 0;
|
||||||
|
ret = 1;
|
||||||
|
} else {
|
||||||
|
ret = ff_inlink_consume_samples(ctx->inputs[0], s->part_size, s->part_size, &in);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ret > 0) {
|
||||||
|
ret = fir_frame(s, in, outlink);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (s->have_coeffs) {
|
if (ret < 0)
|
||||||
while (av_audio_fifo_size(s->fifo[0]) >= s->part_size) {
|
|
||||||
ret = fir_frame(s, outlink);
|
|
||||||
if (ret < 0)
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int request_frame(AVFilterLink *outlink)
|
|
||||||
{
|
|
||||||
AVFilterContext *ctx = outlink->src;
|
|
||||||
AudioFIRContext *s = ctx->priv;
|
|
||||||
int ret;
|
|
||||||
|
|
||||||
if (!s->eof_coeffs) {
|
|
||||||
ret = ff_request_frame(ctx->inputs[1]);
|
|
||||||
if (ret == AVERROR_EOF) {
|
|
||||||
s->eof_coeffs = 1;
|
|
||||||
ret = 0;
|
|
||||||
}
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
|
||||||
ret = ff_request_frame(ctx->inputs[0]);
|
|
||||||
if (ret == AVERROR_EOF && s->have_coeffs) {
|
|
||||||
if (s->need_padding) {
|
|
||||||
AVFrame *silence = ff_get_audio_buffer(outlink, s->part_size);
|
|
||||||
|
|
||||||
if (!silence)
|
if (s->response && s->have_coeffs) {
|
||||||
return AVERROR(ENOMEM);
|
if (ff_outlink_frame_wanted(ctx->outputs[1])) {
|
||||||
ret = av_audio_fifo_write(s->fifo[0], (void **)silence->extended_data,
|
s->video->pts = s->pts;
|
||||||
silence->nb_samples);
|
ret = ff_filter_frame(ctx->outputs[1], av_frame_clone(s->video));
|
||||||
av_frame_free(&silence);
|
|
||||||
if (ret < 0)
|
|
||||||
return ret;
|
|
||||||
s->need_padding = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
while (av_audio_fifo_size(s->fifo[0]) > 0) {
|
|
||||||
ret = fir_frame(s, outlink);
|
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
ret = AVERROR_EOF;
|
|
||||||
}
|
}
|
||||||
return ret;
|
|
||||||
|
if (ff_inlink_acknowledge_status(ctx->inputs[0], &status, &pts)) {
|
||||||
|
if (status == AVERROR_EOF) {
|
||||||
|
ff_outlink_set_status(ctx->outputs[0], status, pts);
|
||||||
|
if (s->response)
|
||||||
|
ff_outlink_set_status(ctx->outputs[1], status, pts);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ff_outlink_frame_wanted(ctx->outputs[0])) {
|
||||||
|
ff_inlink_request_frame(ctx->inputs[0]);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (s->response && ff_outlink_frame_wanted(ctx->outputs[1])) {
|
||||||
|
ff_inlink_request_frame(ctx->inputs[0]);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int query_formats(AVFilterContext *ctx)
|
static int query_formats(AVFilterContext *ctx)
|
||||||
|
@ -560,9 +566,8 @@ static int config_output(AVFilterLink *outlink)
|
||||||
outlink->channel_layout = ctx->inputs[0]->channel_layout;
|
outlink->channel_layout = ctx->inputs[0]->channel_layout;
|
||||||
outlink->channels = ctx->inputs[0]->channels;
|
outlink->channels = ctx->inputs[0]->channels;
|
||||||
|
|
||||||
s->fifo[0] = av_audio_fifo_alloc(ctx->inputs[0]->format, ctx->inputs[0]->channels, 1024);
|
s->fifo = av_audio_fifo_alloc(ctx->inputs[1]->format, ctx->inputs[1]->channels, 1024);
|
||||||
s->fifo[1] = av_audio_fifo_alloc(ctx->inputs[1]->format, ctx->inputs[1]->channels, 1024);
|
if (!s->fifo)
|
||||||
if (!s->fifo[0] || !s->fifo[1])
|
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
|
|
||||||
s->sum = av_calloc(outlink->channels, sizeof(*s->sum));
|
s->sum = av_calloc(outlink->channels, sizeof(*s->sum));
|
||||||
|
@ -622,12 +627,10 @@ static av_cold void uninit(AVFilterContext *ctx)
|
||||||
}
|
}
|
||||||
av_freep(&s->irdft);
|
av_freep(&s->irdft);
|
||||||
|
|
||||||
av_frame_free(&s->in[0]);
|
|
||||||
av_frame_free(&s->in[1]);
|
av_frame_free(&s->in[1]);
|
||||||
av_frame_free(&s->buffer);
|
av_frame_free(&s->buffer);
|
||||||
|
|
||||||
av_audio_fifo_free(s->fifo[0]);
|
av_audio_fifo_free(s->fifo);
|
||||||
av_audio_fifo_free(s->fifo[1]);
|
|
||||||
|
|
||||||
av_freep(&s->fdsp);
|
av_freep(&s->fdsp);
|
||||||
|
|
||||||
|
@ -663,7 +666,6 @@ static av_cold int init(AVFilterContext *ctx)
|
||||||
.name = av_strdup("default"),
|
.name = av_strdup("default"),
|
||||||
.type = AVMEDIA_TYPE_AUDIO,
|
.type = AVMEDIA_TYPE_AUDIO,
|
||||||
.config_props = config_output,
|
.config_props = config_output,
|
||||||
.request_frame = request_frame,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
if (!pad.name)
|
if (!pad.name)
|
||||||
|
@ -709,11 +711,9 @@ static const AVFilterPad afir_inputs[] = {
|
||||||
{
|
{
|
||||||
.name = "main",
|
.name = "main",
|
||||||
.type = AVMEDIA_TYPE_AUDIO,
|
.type = AVMEDIA_TYPE_AUDIO,
|
||||||
.filter_frame = filter_frame,
|
|
||||||
},{
|
},{
|
||||||
.name = "ir",
|
.name = "ir",
|
||||||
.type = AVMEDIA_TYPE_AUDIO,
|
.type = AVMEDIA_TYPE_AUDIO,
|
||||||
.filter_frame = read_ir,
|
|
||||||
},
|
},
|
||||||
{ NULL }
|
{ NULL }
|
||||||
};
|
};
|
||||||
|
@ -743,6 +743,7 @@ AVFilter ff_af_afir = {
|
||||||
.priv_class = &afir_class,
|
.priv_class = &afir_class,
|
||||||
.query_formats = query_formats,
|
.query_formats = query_formats,
|
||||||
.init = init,
|
.init = init,
|
||||||
|
.activate = activate,
|
||||||
.uninit = uninit,
|
.uninit = uninit,
|
||||||
.inputs = afir_inputs,
|
.inputs = afir_inputs,
|
||||||
.flags = AVFILTER_FLAG_DYNAMIC_OUTPUTS |
|
.flags = AVFILTER_FLAG_DYNAMIC_OUTPUTS |
|
||||||
|
|
|
@ -69,7 +69,7 @@ typedef struct AudioFIRContext {
|
||||||
float **block;
|
float **block;
|
||||||
FFTComplex **coeff;
|
FFTComplex **coeff;
|
||||||
|
|
||||||
AVAudioFifo *fifo[2];
|
AVAudioFifo *fifo;
|
||||||
AVFrame *in[2];
|
AVFrame *in[2];
|
||||||
AVFrame *buffer;
|
AVFrame *buffer;
|
||||||
AVFrame *video;
|
AVFrame *video;
|
||||||
|
|
Loading…
Reference in New Issue