FFmpeg
Loading...
Searching...
No Matches
af_tremolo.c
Go to the documentation of this file.
1/*
2 * Copyright (c) 2015 Kyle Swanson <k@ylo.ph>.
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
21#include "libavutil/mem.h"
22#include "libavutil/opt.h"
23#include "avfilter.h"
24#include "filters.h"
25#include "audio.h"
26
27typedef struct TremoloContext {
28 const AVClass *class;
29 double freq;
30 double depth;
31 double *table;
33 int index;
35
36#define OFFSET(x) offsetof(TremoloContext, x)
37#define FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
38
39static const AVOption tremolo_options[] = {
40 { "f", "set frequency in hertz", OFFSET(freq), AV_OPT_TYPE_DOUBLE, {.dbl = 5.0}, 0.1, 20000.0, FLAGS },
41 { "d", "set depth as percentage", OFFSET(depth), AV_OPT_TYPE_DOUBLE, {.dbl = 0.5}, 0.0, 1.0, FLAGS },
42 { NULL }
43};
44
46
47static int filter_frame(AVFilterLink *inlink, AVFrame *in)
48{
49 AVFilterContext *ctx = inlink->dst;
50 AVFilterLink *outlink = ctx->outputs[0];
51 TremoloContext *s = ctx->priv;
52 const double *src = (const double *)in->data[0];
53 const int channels = inlink->ch_layout.nb_channels;
54 const int nb_samples = in->nb_samples;
55 AVFrame *out;
56 double *dst;
57 int n, c;
58
59 if (av_frame_is_writable(in)) {
60 out = in;
61 } else {
62 out = ff_get_audio_buffer(outlink, in->nb_samples);
63 if (!out) {
64 av_frame_free(&in);
65 return AVERROR(ENOMEM);
66 }
68 }
69 dst = (double *)out->data[0];
70
71 for (n = 0; n < nb_samples; n++) {
72 for (c = 0; c < channels; c++)
73 dst[c] = src[c] * s->table[s->index];
74 dst += channels;
75 src += channels;
76 s->index++;
77 if (s->index >= s->table_size)
78 s->index = 0;
79 }
80
81 if (in != out)
82 av_frame_free(&in);
83
84 return ff_filter_frame(outlink, out);
85}
86
88{
89 TremoloContext *s = ctx->priv;
90 av_freep(&s->table);
91}
92
93static int config_input(AVFilterLink *inlink)
94{
95 AVFilterContext *ctx = inlink->dst;
96 TremoloContext *s = ctx->priv;
97 const double offset = 1. - s->depth / 2.;
98 int i;
99
100 s->table_size = lrint(inlink->sample_rate / s->freq + 0.5);
101 s->table = av_malloc_array(s->table_size, sizeof(*s->table));
102 if (!s->table)
103 return AVERROR(ENOMEM);
104
105 for (i = 0; i < s->table_size; i++) {
106 double env = s->freq * i / inlink->sample_rate;
107 env = sin(2 * M_PI * fmod(env + 0.25, 1.0));
108 s->table[i] = env * (1 - fabs(offset)) + offset;
109 }
110
111 s->index = 0;
112
113 return 0;
114}
115
117 {
118 .name = "default",
119 .type = AVMEDIA_TYPE_AUDIO,
120 .config_props = config_input,
121 .filter_frame = filter_frame,
122 },
123};
124
126 .p.name = "tremolo",
127 .p.description = NULL_IF_CONFIG_SMALL("Apply tremolo effect."),
128 .p.priv_class = &tremolo_class,
130 .priv_size = sizeof(TremoloContext),
131 .uninit = uninit,
135};
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
static int config_input(AVFilterLink *inlink)
static const AVFilterPad avfilter_af_tremolo_inputs[]
Definition af_tremolo.c:116
static int config_input(AVFilterLink *inlink)
Definition af_tremolo.c:93
const FFFilter ff_af_tremolo
Definition af_tremolo.c:125
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition af_tremolo.c:47
static const AVOption tremolo_options[]
Definition af_tremolo.c:39
static av_cold void uninit(AVFilterContext *ctx)
Definition af_tremolo.c:87
#define OFFSET(x)
Definition af_tremolo.c:36
channels
Definition aptx.h:31
const AVFilterPad ff_audio_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_AUDIO.
Definition audio.c:34
AVFrame * ff_get_audio_buffer(AVFilterLink *link, int nb_samples)
Request an audio samples buffer with a specific set of permissions.
Definition audio.c:74
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition avfilter.c:1068
Main libavfilter public API header.
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
#define FLAGS
Definition cmdutils.c:598
#define NULL
Definition coverity.c:32
static __device__ float fabs(float a)
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
Definition dolby_e.c:1067
@ AV_OPT_TYPE_DOUBLE
Underlying C type is double.
Definition opt.h:266
#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:196
#define AVERROR(e)
Definition error.h:45
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
Definition frame.c:535
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition frame.c:64
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition frame.c:599
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
@ AV_SAMPLE_FMT_DBL
double
Definition samplefmt.h:61
static av_cold void uninit(AVBitStreamFilterContext *ctx)
unsigned offset
Definition libaomenc.c:763
#define FILTER_INPUTS(array)
Definition filters.h:264
#define FILTER_OUTPUTS(array)
Definition filters.h:265
#define FILTER_SINGLE_SAMPLEFMT(sample_fmt_)
Definition filters.h:257
#define AVFILTER_DEFINE_CLASS(fname)
Definition filters.h:478
#define av_cold
Definition attributes.h:117
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
#define M_PI
Definition mathematics.h:67
Memory handling functions.
AVOptions.
int nb_channels
Number of channels in this layout.
Describe the class of an AVClass context structure.
Definition log.h:76
An instance of a filter.
Definition avfilter.h:273
A filter pad used for either input or output.
Definition filters.h:40
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
int nb_samples
number of audio samples (per channel) described by this frame
Definition frame.h:552
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition frame.h:493
AVOption.
Definition opt.h:428
double * table
Definition af_tremolo.c:31
#define lrint
Definition tablegen.h:53
#define av_malloc_array(a, b)
#define av_freep(p)
#define src
Definition vp8dsp.c:248
static FILE * out
Definition movenc.c:55
static AVFormatContext * ctx
Definition movenc.c:49
static double c[64]