Go to the documentation of this file.
34 #define OFFSET(x) offsetof(AudioContrastContext, x)
35 #define A AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
48 const float *
src =
s[0];
52 for (n = 0; n < nb_samples; n++) {
68 const double *
src =
s[0];
72 for (n = 0; n < nb_samples; n++) {
76 dst[
c] = sin(
d + contrast * sin(
d * 4));
91 const float *
src =
s[
c];
94 for (n = 0; n < nb_samples; n++) {
109 const double *
src =
s[
c];
112 for (n = 0; n < nb_samples; n++) {
115 dst[n] = sin(
d + contrast * sin(
d * 4));
173 .description =
NULL_IF_CONFIG_SMALL(
"Simple audio dynamic range compression/expansion filter."),
175 .priv_class = &acontrast_class,
AVFrame * ff_get_audio_buffer(AVFilterLink *link, int nb_samples)
Request an audio samples buffer with a specific set of permissions.
@ AV_SAMPLE_FMT_FLTP
float, planar
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.
This structure describes decoded (raw) audio or video data.
AVFILTER_DEFINE_CLASS(acontrast)
const char * name
Filter name.
int nb_channels
Number of channels in this layout.
A link between two filters.
static const AVOption acontrast_options[]
AVChannelLayout ch_layout
Channel layout of the audio data.
A filter pad used for either input or output.
static void filter_dbl(void **d, const void **s, int nb_samples, int channels, float contrast)
#define FILTER_INPUTS(array)
Describe the class of an AVClass context structure.
void(* filter)(void **dst, const void **src, int nb_samples, int channels, float contrast)
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.
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
static void filter_flt(void **d, const void **s, int nb_samples, int channels, float contrast)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
const AVFilter ff_af_acontrast
int nb_samples
number of audio samples (per channel) described by this frame
uint8_t ** extended_data
pointers to the data planes/channels.
const char * name
Pad name.
static void filter_fltp(void **d, const void **s, int nb_samples, int channels, float contrast)
static const AVFilterPad inputs[]
@ AV_SAMPLE_FMT_DBLP
double, planar
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
#define FILTER_OUTPUTS(array)
static void filter_dblp(void **d, const void **s, int nb_samples, int channels, float contrast)
@ AV_SAMPLE_FMT_DBL
double
#define FILTER_SAMPLEFMTS(...)