libavdevice/timefilter.c
f982c6d8
 /*
  * Delay Locked Loop based time filter
  * Copyright (c) 2009 Samalyse
8507bde0
  * Copyright (c) 2009 Michael Niedermayer
f982c6d8
  * Author: Olivier Guilyardi <olivier samalyse com>
8507bde0
  *         Michael Niedermayer <michaelni gmx at>
f982c6d8
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
0c5d78a8
 #include "libavutil/mem.h"
f982c6d8
 #include "config.h"
 #include "timefilter.h"
 
 struct TimeFilter {
     /// Delay Locked Loop data. These variables refer to mathematical
     /// concepts described in: http://www.kokkinizita.net/papers/usingdll.pdf
     double cycle_time;
     double feedback2_factor;
     double feedback3_factor;
2e51dedd
     double clock_period;
494065ca
     int count;
f982c6d8
 };
 
3073aadf
 /* 1 - exp(-x) using a 3-order power series */
 static double qexpneg(double x)
 {
     return 1 - 1 / (1 + x * (1 + x / 2 * (1 + x / 3)));
 }
 
 TimeFilter *ff_timefilter_new(double time_base,
                               double period,
                               double bandwidth)
f982c6d8
 {
0c5d78a8
     TimeFilter *self       = av_mallocz(sizeof(TimeFilter));
3073aadf
     double o               = 2 * M_PI * bandwidth * period * time_base;
     self->clock_period     = time_base;
     self->feedback2_factor = qexpneg(M_SQRT2 * o);
9bbe6ed1
     self->feedback3_factor = qexpneg(o * o) / period;
f982c6d8
     return self;
 }
 
 void ff_timefilter_destroy(TimeFilter *self)
 {
     av_freep(&self);
 }
 
 void ff_timefilter_reset(TimeFilter *self)
 {
0c5d78a8
     self->count = 0;
f982c6d8
 }
 
55b58598
 double ff_timefilter_update(TimeFilter *self, double system_time, double period)
f982c6d8
 {
494065ca
     self->count++;
0c5d78a8
     if (self->count == 1) {
f982c6d8
         /// init loop
0c5d78a8
         self->cycle_time = system_time;
f982c6d8
     } else {
28e947e4
         double loop_error;
0c5d78a8
         self->cycle_time += self->clock_period * period;
f982c6d8
         /// calculate loop error
0c5d78a8
         loop_error = system_time - self->cycle_time;
f982c6d8
 
         /// update loop
3dc99a18
         self->cycle_time   += FFMAX(self->feedback2_factor, 1.0 / self->count) * loop_error;
9bbe6ed1
         self->clock_period += self->feedback3_factor * loop_error;
f982c6d8
     }
     return self->cycle_time;
 }
1b85ec1e
 
8a9ae37f
 double ff_timefilter_eval(TimeFilter *self, double delta)
 {
     return self->cycle_time + self->clock_period * delta;
 }
 
1b85ec1e
 #ifdef TEST
cc7b62af
 #include "libavutil/lfg.h"
 #define LFG_MAX ((1LL << 32) - 1)
 
70ad9842
 #undef printf
 
6d16718e
 int main(void)
 {
cc7b62af
     AVLFG prng;
0c5d78a8
     double n0, n1;
1b85ec1e
 #define SAMPLES 1000
     double ideal[SAMPLES];
     double samples[SAMPLES];
a5bf9b35
     double samplet[SAMPLES];
8b2fa965
 #if 1
0c5d78a8
     for (n0 = 0; n0 < 40; n0 = 2 * n0 + 1) {
         for (n1 = 0; n1 < 10; n1 = 2 * n1 + 1) {
8b2fa965
 #else
0c5d78a8
     {
         {
             n0 = 7;
             n1 = 1;
8b2fa965
 #endif
0c5d78a8
             double best_error = 1000000000;
             double bestpar0   = 1;
a5bf9b35
             double bestpar1   = 1;
1b85ec1e
             int better, i;
 
cc7b62af
             av_lfg_init(&prng, 123);
0c5d78a8
             for (i = 0; i < SAMPLES; i++) {
a5bf9b35
                 samplet[i] = 10 + i + (av_lfg_get(&prng) < LFG_MAX/2 ? 0 : 0.999);
                 ideal[i]   = samplet[i] + n1 * i / (1000);
0c5d78a8
                 samples[i] = ideal[i] + n0 * (av_lfg_get(&prng) - LFG_MAX / 2) / (LFG_MAX * 10LL);
a5bf9b35
                 if(i && samples[i]<samples[i-1])
                     samples[i]=samples[i-1]+0.001;
1b85ec1e
             }
 
0c5d78a8
             do {
1b85ec1e
                 double par0, par1;
0c5d78a8
                 better = 0;
                 for (par0 = bestpar0 * 0.8; par0 <= bestpar0 * 1.21; par0 += bestpar0 * 0.05) {
                     for (par1 = bestpar1 * 0.8; par1 <= bestpar1 * 1.21; par1 += bestpar1 * 0.05) {
                         double error   = 0;
                         TimeFilter *tf = ff_timefilter_new(1, par0, par1);
                         for (i = 0; i < SAMPLES; i++) {
1b85ec1e
                             double filtered;
a5bf9b35
                             filtered = ff_timefilter_update(tf, samples[i], i ? (samplet[i] - samplet[i-1]) : 1);
                             if(filtered < 0 || filtered > 1000000000)
                                 printf("filter is unstable\n");
0c5d78a8
                             error   += (filtered - ideal[i]) * (filtered - ideal[i]);
1b85ec1e
                         }
                         ff_timefilter_destroy(tf);
0c5d78a8
                         if (error < best_error) {
                             best_error = error;
                             bestpar0   = par0;
                             bestpar1   = par1;
                             better     = 1;
1b85ec1e
                         }
                     }
                 }
0c5d78a8
             } while (better);
8b2fa965
 #if 0
0c5d78a8
             double lastfil = 9;
             TimeFilter *tf = ff_timefilter_new(1, bestpar0, bestpar1);
             for (i = 0; i < SAMPLES; i++) {
8b2fa965
                 double filtered;
0c5d78a8
                 filtered = ff_timefilter_update(tf, samples[i], 1);
                 printf("%f %f %f %f\n", i - samples[i] + 10, filtered - samples[i],
                        samples[FFMAX(i, 1)] - samples[FFMAX(i - 1, 0)], filtered - lastfil);
                 lastfil = filtered;
8b2fa965
             }
             ff_timefilter_destroy(tf);
 #else
a2085ccc
             printf(" [%f %f %9f]", bestpar0, bestpar1, best_error);
8b2fa965
 #endif
1b85ec1e
         }
         printf("\n");
     }
6d16718e
     return 0;
1b85ec1e
 }
 #endif