ffmpeg/libavfilter/af_adenorm.c

319 lines
9.2 KiB
C
Raw Normal View History

2020-11-02 16:16:05 +00:00
/*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* FFmpeg is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavutil/avassert.h"
#include "libavutil/channel_layout.h"
#include "libavutil/opt.h"
#include "audio.h"
#include "avfilter.h"
#include "internal.h"
enum FilterType {
DC_TYPE,
AC_TYPE,
SQ_TYPE,
PS_TYPE,
NB_TYPES,
};
typedef struct ADenormContext {
const AVClass *class;
double level;
double level_db;
int type;
int64_t in_samples;
void (*filter)(AVFilterContext *ctx, void *dst,
const void *src, int nb_samples);
} ADenormContext;
static int query_formats(AVFilterContext *ctx)
{
static const enum AVSampleFormat sample_fmts[] = {
AV_SAMPLE_FMT_FLTP, AV_SAMPLE_FMT_DBLP,
AV_SAMPLE_FMT_NONE
};
int ret = ff_set_common_formats_from_list(ctx, sample_fmts);
2020-11-02 16:16:05 +00:00
if (ret < 0)
return ret;
ret = ff_set_common_all_channel_counts(ctx);
2020-11-02 16:16:05 +00:00
if (ret < 0)
return ret;
return ff_set_common_all_samplerates(ctx);
2020-11-02 16:16:05 +00:00
}
static void dc_denorm_fltp(AVFilterContext *ctx, void *dstp,
const void *srcp, int nb_samples)
{
ADenormContext *s = ctx->priv;
const float *src = (const float *)srcp;
float *dst = (float *)dstp;
const float dc = s->level;
for (int n = 0; n < nb_samples; n++) {
dst[n] = src[n] + dc;
}
}
static void dc_denorm_dblp(AVFilterContext *ctx, void *dstp,
const void *srcp, int nb_samples)
{
ADenormContext *s = ctx->priv;
const double *src = (const double *)srcp;
double *dst = (double *)dstp;
const double dc = s->level;
for (int n = 0; n < nb_samples; n++) {
dst[n] = src[n] + dc;
}
}
static void ac_denorm_fltp(AVFilterContext *ctx, void *dstp,
const void *srcp, int nb_samples)
{
ADenormContext *s = ctx->priv;
const float *src = (const float *)srcp;
float *dst = (float *)dstp;
const float dc = s->level;
const int64_t N = s->in_samples;
for (int n = 0; n < nb_samples; n++) {
dst[n] = src[n] + dc * (((N + n) & 1) ? -1.f : 1.f);
}
}
static void ac_denorm_dblp(AVFilterContext *ctx, void *dstp,
const void *srcp, int nb_samples)
{
ADenormContext *s = ctx->priv;
const double *src = (const double *)srcp;
double *dst = (double *)dstp;
const double dc = s->level;
const int64_t N = s->in_samples;
for (int n = 0; n < nb_samples; n++) {
dst[n] = src[n] + dc * (((N + n) & 1) ? -1. : 1.);
}
}
static void sq_denorm_fltp(AVFilterContext *ctx, void *dstp,
const void *srcp, int nb_samples)
{
ADenormContext *s = ctx->priv;
const float *src = (const float *)srcp;
float *dst = (float *)dstp;
const float dc = s->level;
const int64_t N = s->in_samples;
for (int n = 0; n < nb_samples; n++) {
dst[n] = src[n] + dc * ((((N + n) >> 8) & 1) ? -1.f : 1.f);
}
}
static void sq_denorm_dblp(AVFilterContext *ctx, void *dstp,
const void *srcp, int nb_samples)
{
ADenormContext *s = ctx->priv;
const double *src = (const double *)srcp;
double *dst = (double *)dstp;
const double dc = s->level;
const int64_t N = s->in_samples;
for (int n = 0; n < nb_samples; n++) {
dst[n] = src[n] + dc * ((((N + n) >> 8) & 1) ? -1. : 1.);
}
}
static void ps_denorm_fltp(AVFilterContext *ctx, void *dstp,
const void *srcp, int nb_samples)
{
ADenormContext *s = ctx->priv;
const float *src = (const float *)srcp;
float *dst = (float *)dstp;
const float dc = s->level;
const int64_t N = s->in_samples;
for (int n = 0; n < nb_samples; n++) {
dst[n] = src[n] + dc * (((N + n) & 255) ? 0.f : 1.f);
}
}
static void ps_denorm_dblp(AVFilterContext *ctx, void *dstp,
const void *srcp, int nb_samples)
{
ADenormContext *s = ctx->priv;
const double *src = (const double *)srcp;
double *dst = (double *)dstp;
const double dc = s->level;
const int64_t N = s->in_samples;
for (int n = 0; n < nb_samples; n++) {
dst[n] = src[n] + dc * (((N + n) & 255) ? 0. : 1.);
}
}
static int config_output(AVFilterLink *outlink)
{
AVFilterContext *ctx = outlink->src;
ADenormContext *s = ctx->priv;
switch (s->type) {
case DC_TYPE:
switch (outlink->format) {
case AV_SAMPLE_FMT_FLTP: s->filter = dc_denorm_fltp; break;
case AV_SAMPLE_FMT_DBLP: s->filter = dc_denorm_dblp; break;
}
break;
case AC_TYPE:
switch (outlink->format) {
case AV_SAMPLE_FMT_FLTP: s->filter = ac_denorm_fltp; break;
case AV_SAMPLE_FMT_DBLP: s->filter = ac_denorm_dblp; break;
}
break;
case SQ_TYPE:
switch (outlink->format) {
case AV_SAMPLE_FMT_FLTP: s->filter = sq_denorm_fltp; break;
case AV_SAMPLE_FMT_DBLP: s->filter = sq_denorm_dblp; break;
}
break;
case PS_TYPE:
switch (outlink->format) {
case AV_SAMPLE_FMT_FLTP: s->filter = ps_denorm_fltp; break;
case AV_SAMPLE_FMT_DBLP: s->filter = ps_denorm_dblp; break;
}
break;
default:
av_assert0(0);
}
return 0;
}
typedef struct ThreadData {
AVFrame *in, *out;
} ThreadData;
static int filter_channels(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
{
ADenormContext *s = ctx->priv;
ThreadData *td = arg;
AVFrame *out = td->out;
AVFrame *in = td->in;
const int start = (in->channels * jobnr) / nb_jobs;
const int end = (in->channels * (jobnr+1)) / nb_jobs;
for (int ch = start; ch < end; ch++) {
s->filter(ctx, out->extended_data[ch],
in->extended_data[ch],
in->nb_samples);
}
return 0;
}
2020-11-02 16:16:05 +00:00
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
{
AVFilterContext *ctx = inlink->dst;
ADenormContext *s = ctx->priv;
AVFilterLink *outlink = ctx->outputs[0];
ThreadData td;
2020-11-02 16:16:05 +00:00
AVFrame *out;
if (av_frame_is_writable(in)) {
out = in;
} else {
out = ff_get_audio_buffer(outlink, in->nb_samples);
if (!out) {
av_frame_free(&in);
return AVERROR(ENOMEM);
}
av_frame_copy_props(out, in);
}
s->level = exp(s->level_db / 20. * M_LN10);
td.in = in; td.out = out;
ff_filter_execute(ctx, filter_channels, &td, NULL,
FFMIN(inlink->channels, ff_filter_get_nb_threads(ctx)));
2020-11-02 16:16:05 +00:00
s->in_samples += in->nb_samples;
if (out != in)
av_frame_free(&in);
return ff_filter_frame(outlink, out);
}
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
char *res, int res_len, int flags)
{
AVFilterLink *outlink = ctx->outputs[0];
int ret;
ret = ff_filter_process_command(ctx, cmd, args, res, res_len, flags);
if (ret < 0)
return ret;
return config_output(outlink);
}
static const AVFilterPad adenorm_inputs[] = {
{
.name = "default",
.type = AVMEDIA_TYPE_AUDIO,
.filter_frame = filter_frame,
},
};
static const AVFilterPad adenorm_outputs[] = {
{
.name = "default",
.type = AVMEDIA_TYPE_AUDIO,
.config_props = config_output,
},
};
#define OFFSET(x) offsetof(ADenormContext, x)
#define FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
static const AVOption adenorm_options[] = {
{ "level", "set level", OFFSET(level_db), AV_OPT_TYPE_DOUBLE, {.dbl=-351}, -451, -90, FLAGS },
{ "type", "set type", OFFSET(type), AV_OPT_TYPE_INT, {.i64=DC_TYPE}, 0, NB_TYPES-1, FLAGS, "type" },
{ "dc", NULL, 0, AV_OPT_TYPE_CONST, {.i64=DC_TYPE}, 0, 0, FLAGS, "type"},
{ "ac", NULL, 0, AV_OPT_TYPE_CONST, {.i64=AC_TYPE}, 0, 0, FLAGS, "type"},
{ "square",NULL, 0, AV_OPT_TYPE_CONST, {.i64=SQ_TYPE}, 0, 0, FLAGS, "type"},
{ "pulse", NULL, 0, AV_OPT_TYPE_CONST, {.i64=PS_TYPE}, 0, 0, FLAGS, "type"},
{ NULL }
};
AVFILTER_DEFINE_CLASS(adenorm);
const AVFilter ff_af_adenorm = {
2020-11-02 16:16:05 +00:00
.name = "adenorm",
.description = NULL_IF_CONFIG_SMALL("Remedy denormals by adding extremely low-level noise."),
.priv_size = sizeof(ADenormContext),
2021-08-12 11:05:31 +00:00
FILTER_INPUTS(adenorm_inputs),
FILTER_OUTPUTS(adenorm_outputs),
avfilter: Replace query_formats callback with union of list and callback If one looks at the many query_formats callbacks in existence, one will immediately recognize that there is one type of default callback for video and a slightly different default callback for audio: It is "return ff_set_common_formats_from_list(ctx, pix_fmts);" for video with a filter-specific pix_fmts list. For audio, it is the same with a filter-specific sample_fmts list together with ff_set_common_all_samplerates() and ff_set_common_all_channel_counts(). This commit allows to remove the boilerplate query_formats callbacks by replacing said callback with a union consisting the old callback and pointers for pixel and sample format arrays. For the not uncommon case in which these lists only contain a single entry (besides the sentinel) enum AVPixelFormat and enum AVSampleFormat fields are also added to the union to store them directly in the AVFilter, thereby avoiding a relocation. The state of said union will be contained in a new, dedicated AVFilter field (the nb_inputs and nb_outputs fields have been shrunk to uint8_t in order to create a hole for this new field; this is no problem, as the maximum of all the nb_inputs is four; for nb_outputs it is only two). The state's default value coincides with the earlier default of query_formats being unset, namely that the filter accepts all formats (and also sample rates and channel counts/layouts for audio) provided that these properties agree coincide for all inputs and outputs. By using different union members for audio and video filters the type-unsafety of using the same functions for audio and video lists will furthermore be more confined to formats.c than before. When the new fields are used, they will also avoid allocations: Currently something nearly equivalent to ff_default_query_formats() is called after every successful call to a query_formats callback; yet in the common case that the newly allocated AVFilterFormats are not used at all (namely if there are no free links) these newly allocated AVFilterFormats are freed again without ever being used. Filters no longer using the callback will not exhibit this any more. Reviewed-by: Paul B Mahol <onemda@gmail.com> Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
2021-09-27 10:07:35 +00:00
FILTER_QUERY_FUNC(query_formats),
2020-11-02 16:16:05 +00:00
.priv_class = &adenorm_class,
.process_command = process_command,
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC |
AVFILTER_FLAG_SLICE_THREADS,
2020-11-02 16:16:05 +00:00
};