64#define OFFSET(x) offsetof(ChorusContext, x)
65#define A AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
84 for (p = item_str; *p; p++) {
91static void fill_items(
char *item_str,
int *nb_items,
float *items)
93 char *p, *saveptr =
NULL;
94 int i, new_nb_items = 0;
97 for (
i = 0;
i < *nb_items;
i++) {
101 new_nb_items += sscanf(tstr,
"%f", &items[new_nb_items]) == 1;
104 *nb_items = new_nb_items;
110 int nb_delays, nb_decays, nb_speeds, nb_depths;
112 if (!
s->delays_str || !
s->decays_str || !
s->speeds_str || !
s->depths_str) {
127 if (!
s->delays || !
s->decays || !
s->speeds || !
s->depths)
135 if (nb_delays != nb_decays && nb_delays != nb_speeds && nb_delays != nb_depths) {
140 s->num_chorus = nb_delays;
142 if (
s->num_chorus < 1) {
147 s->length =
av_calloc(
s->num_chorus,
sizeof(*
s->length));
148 s->lookup_table =
av_calloc(
s->num_chorus,
sizeof(*
s->lookup_table));
150 if (!
s->length || !
s->lookup_table)
162 float sum_in_volume = 1.0;
167 for (n = 0; n <
s->num_chorus; n++) {
168 int samples = (int) ((
s->delays[n] +
s->depths[n]) * outlink->
sample_rate / 1000.0);
169 int depth_samples = (int) (
s->depths[n] * outlink->
sample_rate / 1000.0);
174 if (!
s->lookup_table[n])
178 s->length[n], 0., depth_samples, 0);
179 s->max_samples =
FFMAX(
s->max_samples, samples);
182 for (n = 0; n <
s->num_chorus; n++)
183 sum_in_volume +=
s->decays[n];
185 if (
s->in_gain * (sum_in_volume) > 1.0 /
s->out_gain)
197 s->phase[n] =
av_calloc(
s->num_chorus,
sizeof(
int));
202 s->fade_out =
s->max_samples;
210#define MOD(a, b) (((a) >= (b)) ? (a) - (b) : (a))
231 const float *
src = (
const float *)
frame->extended_data[
c];
233 float *chorusbuf = (
float *)
s->chorusbuf[
c];
234 int *phase =
s->phase[
c];
236 for (
i = 0;
i <
frame->nb_samples;
i++) {
239 out = in *
s->in_gain;
241 for (n = 0; n <
s->num_chorus; n++) {
242 out += chorusbuf[
MOD(
s->max_samples +
s->counter[
c] -
243 s->lookup_table[n][phase[n]],
244 s->max_samples)] *
s->decays[n];
245 phase[n] =
MOD(phase[n] + 1,
s->length[n]);
252 chorusbuf[
s->counter[
c]] = in;
253 s->counter[
c] =
MOD(
s->counter[
c] + 1,
s->max_samples);
259 if (
frame != out_frame)
274 int nb_samples =
FFMIN(
s->fade_out, 2048);
280 s->fade_out -= nb_samples;
312 for (n = 0; n <
s->channels; n++)
320 for (n = 0; n <
s->num_chorus; n++)
345 .p.priv_class = &chorus_class,
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
static int request_frame(AVFilterLink *outlink)
static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
static int request_frame(AVFilterLink *outlink)
static const AVFilterPad chorus_inputs[]
static const AVFilterPad chorus_outputs[]
static av_cold void uninit(AVFilterContext *ctx)
static const AVOption chorus_options[]
static int config_output(AVFilterLink *outlink)
const FFFilter ff_af_chorus
static void count_items(char *item_str, int *nb_items)
static void fill_items(char *item_str, int *nb_items, float *items)
AVFrame * ff_get_audio_buffer(AVFilterLink *link, int nb_samples)
Request an audio samples buffer with a specific set of permissions.
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
int ff_request_frame(AVFilterLink *link)
Request an input frame from the filter at the other end of the link.
Main libavfilter public API header.
#define i(width, name, range_min, range_max)
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
int(* init)(AVBSFContext *ctx)
void ff_generate_wave_table(enum WaveType wave_type, enum AVSampleFormat sample_fmt, void *table, int table_size, double min, double max, double phase)
@ AV_OPT_TYPE_FLOAT
Underlying C type is float.
@ AV_OPT_TYPE_STRING
Underlying C type is a uint8_t* that is either NULL or points to a C string allocated with the av_mal...
#define AVERROR_EOF
End of file.
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
#define AV_LOG_WARNING
Something somehow does not look correct.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
@ AV_SAMPLE_FMT_FLTP
float, planar
@ AV_SAMPLE_FMT_S32
signed 32 bits
int av_samples_set_silence(uint8_t *const *audio_data, int offset, int nb_samples, int nb_channels, enum AVSampleFormat sample_fmt)
Fill an audio buffer with silence.
int av_samples_alloc_array_and_samples(uint8_t ***audio_data, int *linesize, int nb_channels, int nb_samples, enum AVSampleFormat sample_fmt, int align)
Allocate a data pointers array, samples buffer for nb_samples samples, and fill data pointers and lin...
char * av_strtok(char *s, const char *delim, char **saveptr)
Split the string into several tokens which can be accessed by successive calls to av_strtok().
#define AV_NOPTS_VALUE
Undefined timestamp value.
static av_cold void uninit(AVBitStreamFilterContext *ctx)
static int config_output(AVBitStreamFilterLink *outlink)
#define FILTER_INPUTS(array)
#define FILTER_OUTPUTS(array)
#define FILTER_SINGLE_SAMPLEFMT(sample_fmt_)
#define AVFILTER_DEFINE_CLASS(fname)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
void * av_calloc(size_t nmemb, size_t size)
Memory handling functions.
int nb_channels
Number of channels in this layout.
Describe the class of an AVClass context structure.
A link between two filters.
AVFilterContext * src
source filter
AVRational time_base
Define the time base used by the PTS of the frames/samples which will pass through this link.
int sample_rate
samples per second
AVChannelLayout ch_layout
channel layout of current buffer (see libavutil/channel_layout.h)
AVFilterContext * dst
dest filter
int format
agreed upon media format
A filter pad used for either input or output.
This structure describes decoded (raw) audio or video data.
uint8_t ** extended_data
pointers to the data planes/channels.
Rational number (pair of numerator and denominator).
#define av_realloc_f(p, o, n)
static AVFormatContext * ctx