43     return 1 - 1 / (1 + x * (1 + x / 2 * (1 + x / 3)));
    51     double o               = 2 * 
M_PI * bandwidth * period * time_base;
    52     self->clock_period     = time_base;
    54     self->feedback3_factor = 
qexpneg(o * o) / period;
    71     if (self->count == 1) {
    72         self->cycle_time = system_time;
    75         self->cycle_time += 
self->clock_period * period;
    76         loop_error = system_time - 
self->cycle_time;
    78         self->cycle_time   += 
FFMAX(self->feedback2_factor, 1.0 / self->count) * loop_error;
    79         self->clock_period += 
self->feedback3_factor * loop_error;
    81     return self->cycle_time;
    86     return self->cycle_time + 
self->clock_period * 
delta;
    91 #define LFG_MAX ((1LL << 32) - 1)   101     for (n0 = 0; n0 < 40; n0 = 2 * n0 + 1) {
   102         for (n1 = 0; n1 < 10; n1 = 2 * n1 + 1) {
   103             double best_error = 1000000000;
   109             for (i = 0; i < 
SAMPLES; i++) {
   110                 samplet[
i] = 10 + i + (
av_lfg_get(&prng) < LFG_MAX/2 ? 0 : 0.999);
   111                 ideal[
i]   = samplet[
i] + n1 * i / (1000);
   112                 samples[
i] = ideal[
i] + n0 * (
av_lfg_get(&prng) - LFG_MAX / 2) / (LFG_MAX * 10LL);
   113                 if(i && samples[i]<samples[i-1])
   114                     samples[
i]=samples[i-1]+0.001;
   120                 for (par0 = bestpar0 * 0.8; par0 <= bestpar0 * 1.21; par0 += bestpar0 * 0.05) {
   121                     for (par1 = bestpar1 * 0.8; par1 <= bestpar1 * 1.21; par1 += bestpar1 * 0.05) {
   124                         for (i = 0; i < 
SAMPLES; i++) {
   127                             if(filtered < 0 || filtered > 1000000000)
   128                                 printf(
"filter is unstable\n");
   129                             error   += (filtered - ideal[
i]) * (filtered - ideal[i]);
   132                         if (error < best_error) {
   144             for (i = 0; i < 
SAMPLES; i++) {
   147                 printf(
"%f %f %f %f\n", i - samples[i] + 10, filtered - samples[i],
   148                        samples[
FFMAX(i, 1)] - samples[
FFMAX(i - 1, 0)], filtered - lastfil);
   153             printf(
" [%f %f %9f]", bestpar0, bestpar1, best_error);
 
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
void ff_timefilter_destroy(TimeFilter *self)
Free all resources associated with the filter. 
memory handling functions 
void ff_timefilter_reset(TimeFilter *self)
Reset the filter. 
double ff_timefilter_eval(TimeFilter *self, double delta)
Evaluate the filter at a specified time. 
void av_freep(void *arg)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc() and set the pointer ...
static double qexpneg(double x)
TimeFilter * ff_timefilter_new(double time_base, double period, double bandwidth)
Create a new Delay Locked Loop time filter. 
static unsigned int av_lfg_get(AVLFG *c)
Get the next random unsigned 32-bit number using an ALFG. 
synthesis window for stochastic i
av_cold void av_lfg_init(AVLFG *c, unsigned int seed)
double ff_timefilter_update(TimeFilter *self, double system_time, double period)
Update the filter. 
common internal and external API header 
printf("static const uint8_t my_array[100] = {\n")
Filter the word “frame” indicates either a video frame or a group of audio samples
int main(int argc, char **argv)