50 #define CONTEXT SineContext 51 #define FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM 53 #define OPT_GENERIC(name, field, def, min, max, descr, type, deffield, ...) \ 54 { name, descr, offsetof(CONTEXT, field), AV_OPT_TYPE_ ## type, \ 55 { .deffield = def }, min, max, FLAGS, __VA_ARGS__ } 57 #define OPT_INT(name, field, def, min, max, descr, ...) \ 58 OPT_GENERIC(name, field, def, min, max, descr, INT, i64, __VA_ARGS__) 60 #define OPT_DBL(name, field, def, min, max, descr, ...) \ 61 OPT_GENERIC(name, field, def, min, max, descr, DOUBLE, dbl, __VA_ARGS__) 63 #define OPT_DUR(name, field, def, min, max, descr, ...) \ 64 OPT_GENERIC(name, field, def, min, max, descr, DURATION, str, __VA_ARGS__) 66 #define OPT_STR(name, field, def, min, max, descr, ...) \ 67 OPT_GENERIC(name, field, def, min, max, descr, STRING, str, __VA_ARGS__) 76 OPT_DUR(
"duration",
duration, 0, 0, INT64_MAX,
"set the audio duration",),
85 #define AMPLITUDE 4095 86 #define AMPLITUDE_SHIFT 3 92 uint64_t unit2 = (uint64_t)(ampls * ampls) << 32;
93 unsigned step,
i,
c,
s, k, new_k, n2;
99 for (step = half_pi; step > 1; step /= 2) {
103 for (i = 0; i < half_pi / 2; i +=
step) {
104 s = sin[
i] + sin[i +
step];
105 c = sin[half_pi -
i] + sin[half_pi - i -
step];
109 new_k = (k + unit2 / ((uint64_t)k * n2) + 1) >> 1;
114 sin[i + step / 2] = (k * s + 0x7FFF) >> 16;
115 sin[half_pi - i - step / 2] = (k * c + 0x8000) >> 16;
119 for (i = 0; i <= half_pi; i++)
122 for (i = 0; i < half_pi; i++)
123 sin[half_pi * 2 - i] = sin[i];
124 for (i = 0; i < 2 * half_pi; i++)
125 sin[i + 2 * half_pi] = -sin[i];
230 if (nb_samples <= 0) {
232 "defaulting to 1024\n", nb_samples);
244 samples = (int16_t *)frame->
data[0];
246 for (i = 0; i < nb_samples; i++) {
258 sine->
pts += nb_samples;
281 .priv_class = &sine_class,
int64_t frame_count_in
Number of past frames sent through the link.
This structure describes decoded (raw) audio or video data.
#define OPT_INT(name, field, def, min, max, descr,...)
#define AV_LOG_WARNING
Something somehow does not look correct.
Main libavfilter public API header.
uint32_t dphi_beep
phase increment of the beep
static const AVOption sine_options[]
uint32_t phi_beep
current phase of the beep
int av_expr_parse(AVExpr **expr, const char *s, const char *const *const_names, const char *const *func1_names, double(*const *funcs1)(void *, double), const char *const *func2_names, double(*const *funcs2)(void *, double, double), int log_offset, void *log_ctx)
Parse an expression.
const char * name
Pad name.
AVFILTER_DEFINE_CLASS(sine)
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
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
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
static double av_q2d(AVRational a)
Convert an AVRational to a double.
#define AVERROR_EOF
End of file.
static av_cold int init(AVFilterContext *ctx)
A filter pad used for either input or output.
A link between two filters.
AVFrame * ff_get_audio_buffer(AVFilterLink *link, int nb_samples)
Request an audio samples buffer with a specific set of permissions.
AVExpr * samples_per_frame_expr
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
void * priv
private data for use by the filter
AVRational time_base
Define the time base used by the PTS of the frames/samples which will pass through this link...
simple assert() macros that are a bit more flexible than ISO C assert().
audio channel layout utility functions
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several inputs
#define av_assert1(cond)
assert() equivalent, that does not lie in speed critical code.
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
#define AV_TIME_BASE
Internal time base represented as integer.
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return values
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
AVFilterContext * src
source filter
static const AVFilterPad outputs[]
A list of supported channel layouts.
static int request_frame(AVFilterLink *outlink)
static const AVFilterPad sine_outputs[]
AVSampleFormat
Audio sample formats.
void av_expr_free(AVExpr *e)
Free a parsed expression previously created with av_expr_parse().
#define OPT_DBL(name, field, def, min, max, descr,...)
static const char *const var_names[]
Describe the class of an AVClass context structure.
const char * name
Filter name.
static void make_sin_table(int16_t *sin)
enum MovChannelLayoutTag * layouts
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
static av_cold void uninit(AVFilterContext *ctx)
static av_cold int config_props(AVFilterLink *outlink)
double av_expr_eval(AVExpr *e, const double *const_values, void *opaque)
Evaluate a previously parsed expression.
uint32_t phi
current phase of the sine (2pi = 1<<32)
uint32_t dphi
phase increment between two samples
static av_cold int query_formats(AVFilterContext *ctx)
static enum AVSampleFormat sample_fmts[]
Filter the word “frame” indicates either a video frame or a group of audio samples
#define OPT_STR(name, field, def, min, max, descr,...)
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
#define AV_CH_LAYOUT_MONO
trying all byte sequences megabyte in length and selecting the best looking sequence will yield cases to try But a word about which is also called distortion Distortion can be quantified by almost any quality measurement one chooses the sum of squared differences is used but more complex methods that consider psychovisual effects can be used as well It makes no difference in this discussion First step
simple arithmetic expression evaluator
#define OPT_DUR(name, field, def, min, max, descr,...)