FFmpeg
af_asoftclip.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019 The FFmpeg Project
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
22 #include "libavutil/opt.h"
23 #include "avfilter.h"
24 #include "audio.h"
25 #include "formats.h"
26 
36 };
37 
38 typedef struct ASoftClipContext {
39  const AVClass *class;
40 
41  int type;
42  double param;
43 
44  void (*filter)(struct ASoftClipContext *s, void **dst, const void **src,
45  int nb_samples, int channels, int start, int end);
47 
48 #define OFFSET(x) offsetof(ASoftClipContext, x)
49 #define A AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
50 
51 static const AVOption asoftclip_options[] = {
52  { "type", "set softclip type", OFFSET(type), AV_OPT_TYPE_INT, {.i64=0}, 0, NB_TYPES-1, A, "types" },
53  { "tanh", NULL, 0, AV_OPT_TYPE_CONST, {.i64=ASC_TANH}, 0, 0, A, "types" },
54  { "atan", NULL, 0, AV_OPT_TYPE_CONST, {.i64=ASC_ATAN}, 0, 0, A, "types" },
55  { "cubic", NULL, 0, AV_OPT_TYPE_CONST, {.i64=ASC_CUBIC}, 0, 0, A, "types" },
56  { "exp", NULL, 0, AV_OPT_TYPE_CONST, {.i64=ASC_EXP}, 0, 0, A, "types" },
57  { "alg", NULL, 0, AV_OPT_TYPE_CONST, {.i64=ASC_ALG}, 0, 0, A, "types" },
58  { "quintic", NULL, 0, AV_OPT_TYPE_CONST, {.i64=ASC_QUINTIC},0, 0, A, "types" },
59  { "sin", NULL, 0, AV_OPT_TYPE_CONST, {.i64=ASC_SIN}, 0, 0, A, "types" },
60  { "param", "set softclip parameter", OFFSET(param), AV_OPT_TYPE_DOUBLE, {.dbl=1}, 0.01, 3, A },
61  { NULL }
62 };
63 
64 AVFILTER_DEFINE_CLASS(asoftclip);
65 
67 {
70  static const enum AVSampleFormat sample_fmts[] = {
74  };
75  int ret;
76 
78  if (!formats)
79  return AVERROR(ENOMEM);
81  if (ret < 0)
82  return ret;
83 
85  if (!layouts)
86  return AVERROR(ENOMEM);
87 
89  if (ret < 0)
90  return ret;
91 
94 }
95 
96 #define SQR(x) ((x) * (x))
97 
99  void **dptr, const void **sptr,
100  int nb_samples, int channels,
101  int start, int end)
102 {
103  float param = s->param;
104 
105  for (int c = start; c < end; c++) {
106  const float *src = sptr[c];
107  float *dst = dptr[c];
108 
109  switch (s->type) {
110  case ASC_TANH:
111  for (int n = 0; n < nb_samples; n++) {
112  dst[n] = tanhf(src[n] * param);
113  }
114  break;
115  case ASC_ATAN:
116  for (int n = 0; n < nb_samples; n++)
117  dst[n] = 2.f / M_PI * atanf(src[n] * param);
118  break;
119  case ASC_CUBIC:
120  for (int n = 0; n < nb_samples; n++) {
121  if (FFABS(src[n]) >= 1.5f)
122  dst[n] = FFSIGN(src[n]);
123  else
124  dst[n] = src[n] - 0.1481f * powf(src[n], 3.f);
125  }
126  break;
127  case ASC_EXP:
128  for (int n = 0; n < nb_samples; n++)
129  dst[n] = 2.f / (1.f + expf(-2.f * src[n])) - 1.;
130  break;
131  case ASC_ALG:
132  for (int n = 0; n < nb_samples; n++)
133  dst[n] = src[n] / (sqrtf(param + src[n] * src[n]));
134  break;
135  case ASC_QUINTIC:
136  for (int n = 0; n < nb_samples; n++) {
137  if (FFABS(src[n]) >= 1.25)
138  dst[n] = FFSIGN(src[n]);
139  else
140  dst[n] = src[n] - 0.08192f * powf(src[n], 5.f);
141  }
142  break;
143  case ASC_SIN:
144  for (int n = 0; n < nb_samples; n++) {
145  if (FFABS(src[n]) >= M_PI_2)
146  dst[n] = FFSIGN(src[n]);
147  else
148  dst[n] = sinf(src[n]);
149  }
150  break;
151  }
152  }
153 }
154 
156  void **dptr, const void **sptr,
157  int nb_samples, int channels,
158  int start, int end)
159 {
160  double param = s->param;
161 
162  for (int c = start; c < end; c++) {
163  const double *src = sptr[c];
164  double *dst = dptr[c];
165 
166  switch (s->type) {
167  case ASC_TANH:
168  for (int n = 0; n < nb_samples; n++) {
169  dst[n] = tanh(src[n] * param);
170  }
171  break;
172  case ASC_ATAN:
173  for (int n = 0; n < nb_samples; n++)
174  dst[n] = 2. / M_PI * atan(src[n] * param);
175  break;
176  case ASC_CUBIC:
177  for (int n = 0; n < nb_samples; n++) {
178  if (FFABS(src[n]) >= 1.5)
179  dst[n] = FFSIGN(src[n]);
180  else
181  dst[n] = src[n] - 0.1481 * pow(src[n], 3.);
182  }
183  break;
184  case ASC_EXP:
185  for (int n = 0; n < nb_samples; n++)
186  dst[n] = 2. / (1. + exp(-2. * src[n])) - 1.;
187  break;
188  case ASC_ALG:
189  for (int n = 0; n < nb_samples; n++)
190  dst[n] = src[n] / (sqrt(param + src[n] * src[n]));
191  break;
192  case ASC_QUINTIC:
193  for (int n = 0; n < nb_samples; n++) {
194  if (FFABS(src[n]) >= 1.25)
195  dst[n] = FFSIGN(src[n]);
196  else
197  dst[n] = src[n] - 0.08192 * pow(src[n], 5.);
198  }
199  break;
200  case ASC_SIN:
201  for (int n = 0; n < nb_samples; n++) {
202  if (FFABS(src[n]) >= M_PI_2)
203  dst[n] = FFSIGN(src[n]);
204  else
205  dst[n] = sin(src[n]);
206  }
207  break;
208  }
209  }
210 }
211 
213 {
214  AVFilterContext *ctx = inlink->dst;
215  ASoftClipContext *s = ctx->priv;
216 
217  switch (inlink->format) {
218  case AV_SAMPLE_FMT_FLT:
219  case AV_SAMPLE_FMT_FLTP: s->filter = filter_flt; break;
220  case AV_SAMPLE_FMT_DBL:
221  case AV_SAMPLE_FMT_DBLP: s->filter = filter_dbl; break;
222  }
223 
224  return 0;
225 }
226 
227 typedef struct ThreadData {
228  AVFrame *in, *out;
230  int channels;
231 } ThreadData;
232 
233 static int filter_channels(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
234 {
235  ASoftClipContext *s = ctx->priv;
236  ThreadData *td = arg;
237  AVFrame *out = td->out;
238  AVFrame *in = td->in;
239  const int channels = td->channels;
240  const int nb_samples = td->nb_samples;
241  const int start = (channels * jobnr) / nb_jobs;
242  const int end = (channels * (jobnr+1)) / nb_jobs;
243 
244  s->filter(s, (void **)out->extended_data, (const void **)in->extended_data,
245  nb_samples, channels, start, end);
246 
247  return 0;
248 }
249 
251 {
252  AVFilterContext *ctx = inlink->dst;
253  AVFilterLink *outlink = ctx->outputs[0];
254  int nb_samples, channels;
255  ThreadData td;
256  AVFrame *out;
257 
258  if (av_frame_is_writable(in)) {
259  out = in;
260  } else {
261  out = ff_get_audio_buffer(outlink, in->nb_samples);
262  if (!out) {
263  av_frame_free(&in);
264  return AVERROR(ENOMEM);
265  }
267  }
268 
269  if (av_sample_fmt_is_planar(in->format)) {
270  nb_samples = in->nb_samples;
271  channels = in->channels;
272  } else {
273  nb_samples = in->channels * in->nb_samples;
274  channels = 1;
275  }
276 
277  td.in = in;
278  td.out = out;
279  td.nb_samples = nb_samples;
280  td.channels = channels;
283 
284  if (out != in)
285  av_frame_free(&in);
286 
287  return ff_filter_frame(outlink, out);
288 }
289 
290 static const AVFilterPad inputs[] = {
291  {
292  .name = "default",
293  .type = AVMEDIA_TYPE_AUDIO,
294  .filter_frame = filter_frame,
295  .config_props = config_input,
296  },
297  { NULL }
298 };
299 
300 static const AVFilterPad outputs[] = {
301  {
302  .name = "default",
303  .type = AVMEDIA_TYPE_AUDIO,
304  },
305  { NULL }
306 };
307 
309  .name = "asoftclip",
310  .description = NULL_IF_CONFIG_SMALL("Audio Soft Clipper."),
311  .query_formats = query_formats,
312  .priv_size = sizeof(ASoftClipContext),
313  .priv_class = &asoftclip_class,
314  .inputs = inputs,
315  .outputs = outputs,
319 };
formats
formats
Definition: signature.h:48
ff_get_audio_buffer
AVFrame * ff_get_audio_buffer(AVFilterLink *link, int nb_samples)
Request an audio samples buffer with a specific set of permissions.
Definition: audio.c:86
AV_SAMPLE_FMT_FLTP
@ AV_SAMPLE_FMT_FLTP
float, planar
Definition: samplefmt.h:69
AVFilterChannelLayouts
A list of supported channel layouts.
Definition: formats.h:85
td
#define td
Definition: regdef.h:70
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
NB_TYPES
@ NB_TYPES
Definition: af_asoftclip.c:35
opt.h
ASC_EXP
@ ASC_EXP
Definition: af_asoftclip.c:31
ff_make_format_list
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:300
out
FILE * out
Definition: movenc.c:54
ff_set_common_channel_layouts
int ff_set_common_channel_layouts(AVFilterContext *ctx, AVFilterChannelLayouts *layouts)
A helper for query_formats() which sets all links to the same list of channel layouts/sample rates.
Definition: formats.c:586
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1075
sample_fmts
static enum AVSampleFormat sample_fmts[]
Definition: adpcmenc.c:716
layouts
enum MovChannelLayoutTag * layouts
Definition: mov_chan.c:434
inlink
The exact code depends on how similar the blocks are and how related they are to the and needs to apply these operations to the correct inlink or outlink if there are several Macros are available to factor that when no extra processing is inlink
Definition: filter_design.txt:212
config_input
static int config_input(AVFilterLink *inlink)
Definition: af_asoftclip.c:212
outputs
static const AVFilterPad outputs[]
Definition: af_asoftclip.c:300
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:203
ff_all_channel_counts
AVFilterChannelLayouts * ff_all_channel_counts(void)
Construct an AVFilterChannelLayouts coding for any channel layout, with known or unknown disposition.
Definition: formats.c:454
end
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:92
AudioConvert::channels
int channels
Definition: audio_convert.c:54
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:300
M_PI_2
#define M_PI_2
Definition: mathematics.h:55
AVOption
AVOption.
Definition: opt.h:246
expf
#define expf(x)
Definition: libm.h:283
asoftclip_options
static const AVOption asoftclip_options[]
Definition: af_asoftclip.c:51
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:148
ThreadData::out
AVFrame * out
Definition: af_adeclick.c:494
query_formats
static int query_formats(AVFilterContext *ctx)
Definition: af_asoftclip.c:66
AVFormatContext::internal
AVFormatInternal * internal
An opaque field for libavformat internal usage.
Definition: avformat.h:1788
ThreadData::channels
int channels
Definition: af_asoftclip.c:230
AVFilterFormats
A list of supported formats for one end of a filter link.
Definition: formats.h:64
ASC_ALG
@ ASC_ALG
Definition: af_asoftclip.c:32
formats.h
FFSIGN
#define FFSIGN(a)
Definition: common.h:73
type
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf type
Definition: writing_filters.txt:86
ASC_TANH
@ ASC_TANH
Definition: af_asoftclip.c:28
OFFSET
#define OFFSET(x)
Definition: af_asoftclip.c:48
AVFilterPad
A filter pad used for either input or output.
Definition: internal.h:54
ff_set_common_formats
int ff_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats)
A helper for query_formats() which sets all links to the same list of formats.
Definition: formats.c:605
ASC_ATAN
@ ASC_ATAN
Definition: af_asoftclip.c:29
s
#define s(width, name)
Definition: cbs_vp9.c:257
AV_OPT_TYPE_DOUBLE
@ AV_OPT_TYPE_DOUBLE
Definition: opt.h:225
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
ThreadData::nb_samples
int nb_samples
Definition: af_asoftclip.c:229
av_sample_fmt_is_planar
int av_sample_fmt_is_planar(enum AVSampleFormat sample_fmt)
Check if the sample format is planar.
Definition: samplefmt.c:112
ctx
AVFormatContext * ctx
Definition: movenc.c:48
channels
channels
Definition: aptx.h:33
ASoftClipContext
Definition: af_asoftclip.c:38
f
#define f(width, name)
Definition: cbs_vp9.c:255
arg
const char * arg
Definition: jacosubdec.c:66
FFABS
#define FFABS(a)
Absolute value, Note, INT_MIN / INT64_MIN result in undefined behavior as they are not representable ...
Definition: common.h:72
filter_dbl
static void filter_dbl(ASoftClipContext *s, void **dptr, const void **sptr, int nb_samples, int channels, int start, int end)
Definition: af_asoftclip.c:155
inputs
static const AVFilterPad inputs[]
Definition: af_asoftclip.c:290
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:67
NULL
#define NULL
Definition: coverity.c:32
ASC_CUBIC
@ ASC_CUBIC
Definition: af_asoftclip.c:30
av_frame_copy_props
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:659
ASoftClipContext::type
int type
Definition: af_asoftclip.c:41
ASoftClipContext::filter
void(* filter)(struct ASoftClipContext *s, void **dst, const void **src, int nb_samples, int channels, int start, int end)
Definition: af_asoftclip.c:44
A
#define A
Definition: af_asoftclip.c:49
src
#define src
Definition: vp8dsp.c:254
ASC_QUINTIC
@ ASC_QUINTIC
Definition: af_asoftclip.c:33
sinf
#define sinf(x)
Definition: libm.h:419
exp
int8_t exp
Definition: eval.c:72
c
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
Definition: undefined.txt:32
AVFILTER_DEFINE_CLASS
AVFILTER_DEFINE_CLASS(asoftclip)
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:188
powf
#define powf(x, y)
Definition: libm.h:50
AV_SAMPLE_FMT_NONE
@ AV_SAMPLE_FMT_NONE
Definition: samplefmt.h:59
av_frame_is_writable
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
Definition: frame.c:595
ff_filter_process_command
int ff_filter_process_command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
Generic processing of user supplied commands that are set in the same way as the filter options.
Definition: avfilter.c:869
FFMIN
#define FFMIN(a, b)
Definition: common.h:96
ff_af_asoftclip
AVFilter ff_af_asoftclip
Definition: af_asoftclip.c:308
ASC_SIN
@ ASC_SIN
Definition: af_asoftclip.c:34
M_PI
#define M_PI
Definition: mathematics.h:52
AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
Definition: avfilter.h:125
in
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(const int16_t *) pi >> 8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(const int32_t *) pi >> 24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31)))) #define SET_CONV_FUNC_GROUP(ofmt, ifmt) static void set_generic_function(AudioConvert *ac) { } void ff_audio_convert_free(AudioConvert **ac) { if(! *ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);} AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, int sample_rate, int apply_map) { AudioConvert *ac;int in_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) return NULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method !=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt) > 2) { ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc) { av_free(ac);return NULL;} return ac;} in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar) { ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar ? ac->channels :1;} else if(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;else ac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);return ac;} int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in) { int use_generic=1;int len=in->nb_samples;int p;if(ac->dc) { av_log(ac->avr, AV_LOG_TRACE, "%d samples - audio_convert: %s to %s (dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> in
Definition: audio_convert.c:326
ff_filter_get_nb_threads
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
Definition: avfilter.c:784
process_command
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
Definition: af_afftdn.c:1374
AVSampleFormat
AVSampleFormat
Audio sample formats.
Definition: samplefmt.h:58
atanf
#define atanf(x)
Definition: libm.h:40
ThreadData
Used for passing data between threads.
Definition: dsddec.c:67
AVFilterPad::name
const char * name
Pad name.
Definition: internal.h:60
AVFilter
Filter definition.
Definition: avfilter.h:144
ret
ret
Definition: filter_design.txt:187
ASoftClipTypes
ASoftClipTypes
Definition: af_asoftclip.c:27
ff_all_samplerates
AVFilterFormats * ff_all_samplerates(void)
Definition: formats.c:439
channel_layout.h
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:223
avfilter.h
AV_SAMPLE_FMT_DBLP
@ AV_SAMPLE_FMT_DBLP
double, planar
Definition: samplefmt.h:70
filter_flt
static void filter_flt(ASoftClipContext *s, void **dptr, const void **sptr, int nb_samples, int channels, int start, int end)
Definition: af_asoftclip.c:98
AVFilterContext
An instance of a filter.
Definition: avfilter.h:338
AVFILTER_FLAG_SLICE_THREADS
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
Definition: avfilter.h:116
audio.h
filter_channels
static int filter_channels(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Definition: af_asoftclip.c:233
ThreadData::in
AVFrame * in
Definition: af_afftdn.c:1083
ASoftClipContext::param
double param
Definition: af_asoftclip.c:42
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:565
ff_set_common_samplerates
int ff_set_common_samplerates(AVFilterContext *ctx, AVFilterFormats *samplerates)
Definition: formats.c:593
AV_SAMPLE_FMT_DBL
@ AV_SAMPLE_FMT_DBL
double
Definition: samplefmt.h:64
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: af_asoftclip.c:250
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:232
AV_SAMPLE_FMT_FLT
@ AV_SAMPLE_FMT_FLT
float
Definition: samplefmt.h:63