Go to the documentation of this file.
43 #define OFFSET(x) offsetof(VibratoContext, x)
44 #define FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
58 const int wave_table_size =
s->wave_table_size;
59 const double *wave_table =
s->wave_table;
62 const int buf_size =
s->buf_size;
63 const double depth =
s->depth;
64 int wave_table_index =
s->wave_table_index;
65 int buf_index =
s->buf_index;
82 int samp1_index, samp2_index;
84 decimal = modf(depth * wave_table[wave_table_index], &
integer);
87 if (wave_table_index >= wave_table_size)
88 wave_table_index -= wave_table_size;
90 samp1_index = buf_index +
integer;
91 if (samp1_index >= buf_size)
92 samp1_index -= buf_size;
93 samp2_index = samp1_index + 1;
94 if (samp2_index >= buf_size)
95 samp2_index -= buf_size;
98 double *buf, this_samp;
101 dst = (
double *)
out->extended_data[
c];
105 dst[n] = buf[samp1_index] + (decimal * (buf[samp2_index] - buf[samp1_index]));
106 buf[buf_index] = this_samp;
109 if (buf_index >= buf_size)
110 buf_index -= buf_size;
113 s->wave_table_index = wave_table_index;
114 s->buf_index = buf_index;
127 for (
c = 0;
c <
s->channels;
c++)
141 s->channels =
inlink->ch_layout.nb_channels;
143 for (
c = 0;
c <
s->channels;
c++) {
150 s->wave_table_size =
lrint(
inlink->sample_rate /
s->freq + 0.5);
155 s->wave_table_index = 0;
173 .priv_class = &vibrato_class,
AVFrame * ff_get_audio_buffer(AVFilterLink *link, int nb_samples)
Request an audio samples buffer with a specific set of permissions.
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
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
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
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
#define FILTER_INPUTS(array)
This structure describes decoded (raw) audio or video data.
const char * name
Filter name.
A link between two filters.
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
static av_cold void uninit(AVFilterContext *ctx)
A filter pad used for either input or output.
static const AVFilterPad avfilter_af_vibrato_inputs[]
@ AV_OPT_TYPE_DOUBLE
Underlying C type is double.
#define FILTER_OUTPUTS(array)
const AVFilter ff_af_vibrato
Describe the class of an AVClass context structure.
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
static int config_input(AVFilterLink *inlink)
const AVFilterPad ff_audio_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_AUDIO.
AVFILTER_DEFINE_CLASS(vibrato)
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
void ff_generate_wave_table(enum WaveType wave_type, enum AVSampleFormat sample_fmt, void *table, int table_size, double min, double max, double phase)
#define FILTER_SINGLE_SAMPLEFMT(sample_fmt_)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
static const AVOption vibrato_options[]
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
int nb_samples
number of audio samples (per channel) described by this frame
uint8_t ** extended_data
pointers to the data planes/channels.
#define av_malloc_array(a, b)
const char * name
Pad name.
void * av_calloc(size_t nmemb, size_t size)
@ AV_SAMPLE_FMT_DBLP
double, planar
@ AV_SAMPLE_FMT_DBL
double