Go to the documentation of this file.
29 #define WS_MAX_CHANNELS 32
30 #define INF_TS 0x7FFFFFFFFFFFFFFF
106 #define LCG_A 1284865837
107 #define LCG_C 4150755663
108 #define LCG_AI 849225893
118 uint32_t
a,
c, t = *
s;
146 for (j = 0; j < 7; j++) {
166 if (
b < (uint64_t)1 << 32) {
168 return ((
a /
b) << 32) | ((
a %
b) << 32) /
b;
170 if (
b < (uint64_t)1 << 48) {
171 for (
i = 0;
i < 4;
i++) {
173 r = (
r << 16) | (
a /
b);
178 for (
i = 63;
i >= 0;
i--) {
179 if (
a >= (uint64_t)1 << 63 || a << 1 >=
b) {
180 r |= (uint64_t)1 <<
i;
191 uint64_t dt = ts - (uint64_t)in->
ts_start;
192 uint64_t dt2 = dt & 1 ?
193 dt * ((dt - 1) >> 1) : (dt >> 1) * (dt - 1);
221 uint64_t pink_ts_next = ts & ~(
PINK_UNIT - 1);
238 uint8_t *edata, *edata_end;
241 int64_t dphi1, dphi2, dt, cur_ts = -0x8000000000000000;
257 if (edata_end - edata < 24)
273 if (edata_end - edata < 20 || avc->
sample_rate <= 0)
284 in->
ddphi = (int64_t)(dphi2 - (uint64_t)dphi1) / dt;
285 if (
phi & 0x80000000) {
291 in->
phi0 = (uint64_t)
phi << 33;
295 if (edata_end - edata < 8)
304 in->
amp0 = (uint64_t)
a1 << 32;
305 in->
damp = (int64_t)(((uint64_t)
a2 << 32) - ((uint64_t)
a1 << 32)) / dt;
307 if (edata != edata_end)
319 "This implementation is limited to %d channels.\n",
350 uint32_t
c, all_ch = 0;
374 val =
amp * (unsigned)pink;
382 *cv += (unsigned)
val;
427 if (packet->
size != 12)
439 pcm = (int16_t *)
frame->data[0];
enum ws_interval_type type
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
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 sample_rate
samples per second
This structure describes decoded (raw) audio or video data.
struct ws_interval * inter
static void wavesynth_synth_sample(struct wavesynth_context *ws, int64_t ts, int32_t *channels)
const AVCodec ff_ffwavesynth_decoder
static double val(void *priv, double ch)
@ AV_CODEC_ID_FFWAVESYNTH
static uint64_t phi_at(struct ws_interval *in, int64_t ts)
static int wavesynth_parse_extradata(AVCodecContext *avc)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
static __device__ float floor(float a)
static uint64_t frac64(uint64_t a, uint64_t b)
static void wavesynth_enter_intervals(struct wavesynth_context *ws, int64_t ts)
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
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
enum AVSampleFormat sample_fmt
audio sample format
static void wavesynth_seek(struct wavesynth_context *ws, int64_t ts)
The reader does not expect b to be semantically here and if the code is changed by maybe adding a a division or other the signedness will almost certainly be mistaken To avoid this confusion a new type was SUINT is the C unsigned type but it holds a signed int to use the same example SUINT a
int channels
number of audio channels
#define i(width, name, range_min, range_max)
static av_cold int wavesynth_init(AVCodecContext *avc)
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
static int wavesynth_decode(AVCodecContext *avc, void *rframe, int *rgot_frame, AVPacket *packet)
int32_t pink_pool[PINK_UNIT]
@ AV_SAMPLE_FMT_S16
signed 16 bits
const char * name
Name of the codec implementation.
void * av_calloc(size_t nmemb, size_t size)
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
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
main external API structure.
static av_cold int wavesynth_close(AVCodecContext *avc)
static uint32_t lcg_next(uint32_t *s)
static void lcg_seek(uint32_t *s, uint32_t dt)
static void pink_fill(struct wavesynth_context *ws)
This structure stores compressed data.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
#define MKTAG(a, b, c, d)