]> git.sesse.net Git - ffmpeg/blob - libavdevice/timefilter.c
Merge commit '2d09b36c0379fcda8f984bc8ad8816c8326fd7bd'
[ffmpeg] / libavdevice / timefilter.c
1 /*
2  * Delay Locked Loop based time filter
3  * Copyright (c) 2009 Samalyse
4  * Copyright (c) 2009 Michael Niedermayer
5  * Author: Olivier Guilyardi <olivier samalyse com>
6  *         Michael Niedermayer <michaelni gmx at>
7  *
8  * This file is part of FFmpeg.
9  *
10  * FFmpeg is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * FFmpeg is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with FFmpeg; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23  */
24
25 #include "libavutil/common.h"
26 #include "libavutil/mem.h"
27 #include "config.h"
28 #include "timefilter.h"
29
30 struct TimeFilter {
31     // Delay Locked Loop data. These variables refer to mathematical
32     // concepts described in: http://www.kokkinizita.net/papers/usingdll.pdf
33     double cycle_time;
34     double feedback2_factor;
35     double feedback3_factor;
36     double clock_period;
37     int count;
38 };
39
40 /* 1 - exp(-x) using a 3-order power series */
41 static double qexpneg(double x)
42 {
43     return 1 - 1 / (1 + x * (1 + x / 2 * (1 + x / 3)));
44 }
45
46 TimeFilter *ff_timefilter_new(double time_base,
47                               double period,
48                               double bandwidth)
49 {
50     TimeFilter *self       = av_mallocz(sizeof(TimeFilter));
51     double o               = 2 * M_PI * bandwidth * period * time_base;
52     self->clock_period     = time_base;
53     self->feedback2_factor = qexpneg(M_SQRT2 * o);
54     self->feedback3_factor = qexpneg(o * o) / period;
55     return self;
56 }
57
58 void ff_timefilter_destroy(TimeFilter *self)
59 {
60     av_freep(&self);
61 }
62
63 void ff_timefilter_reset(TimeFilter *self)
64 {
65     self->count = 0;
66 }
67
68 double ff_timefilter_update(TimeFilter *self, double system_time, double period)
69 {
70     self->count++;
71     if (self->count == 1) {
72         self->cycle_time = system_time;
73     } else {
74         double loop_error;
75         self->cycle_time += self->clock_period * period;
76         loop_error = system_time - self->cycle_time;
77
78         self->cycle_time   += FFMAX(self->feedback2_factor, 1.0 / self->count) * loop_error;
79         self->clock_period += self->feedback3_factor * loop_error;
80     }
81     return self->cycle_time;
82 }
83
84 double ff_timefilter_eval(TimeFilter *self, double delta)
85 {
86     return self->cycle_time + self->clock_period * delta;
87 }
88
89 #ifdef TEST
90 #include "libavutil/lfg.h"
91 #define LFG_MAX ((1LL << 32) - 1)
92
93 #undef printf
94
95 int main(void)
96 {
97     AVLFG prng;
98     double n0, n1;
99 #define SAMPLES 1000
100     double ideal[SAMPLES];
101     double samples[SAMPLES];
102     double samplet[SAMPLES];
103     for (n0 = 0; n0 < 40; n0 = 2 * n0 + 1) {
104         for (n1 = 0; n1 < 10; n1 = 2 * n1 + 1) {
105             double best_error = 1000000000;
106             double bestpar0   = 1;
107             double bestpar1   = 1;
108             int better, i;
109
110             av_lfg_init(&prng, 123);
111             for (i = 0; i < SAMPLES; i++) {
112                 samplet[i] = 10 + i + (av_lfg_get(&prng) < LFG_MAX/2 ? 0 : 0.999);
113                 ideal[i]   = samplet[i] + n1 * i / (1000);
114                 samples[i] = ideal[i] + n0 * (av_lfg_get(&prng) - LFG_MAX / 2) / (LFG_MAX * 10LL);
115                 if(i && samples[i]<samples[i-1])
116                     samples[i]=samples[i-1]+0.001;
117             }
118
119             do {
120                 double par0, par1;
121                 better = 0;
122                 for (par0 = bestpar0 * 0.8; par0 <= bestpar0 * 1.21; par0 += bestpar0 * 0.05) {
123                     for (par1 = bestpar1 * 0.8; par1 <= bestpar1 * 1.21; par1 += bestpar1 * 0.05) {
124                         double error   = 0;
125                         TimeFilter *tf = ff_timefilter_new(1, par0, par1);
126                         for (i = 0; i < SAMPLES; i++) {
127                             double filtered;
128                             filtered = ff_timefilter_update(tf, samples[i], i ? (samplet[i] - samplet[i-1]) : 1);
129                             if(filtered < 0 || filtered > 1000000000)
130                                 printf("filter is unstable\n");
131                             error   += (filtered - ideal[i]) * (filtered - ideal[i]);
132                         }
133                         ff_timefilter_destroy(tf);
134                         if (error < best_error) {
135                             best_error = error;
136                             bestpar0   = par0;
137                             bestpar1   = par1;
138                             better     = 1;
139                         }
140                     }
141                 }
142             } while (better);
143 #if 0
144             double lastfil = 9;
145             TimeFilter *tf = ff_timefilter_new(1, bestpar0, bestpar1);
146             for (i = 0; i < SAMPLES; i++) {
147                 double filtered;
148                 filtered = ff_timefilter_update(tf, samples[i], 1);
149                 printf("%f %f %f %f\n", i - samples[i] + 10, filtered - samples[i],
150                        samples[FFMAX(i, 1)] - samples[FFMAX(i - 1, 0)], filtered - lastfil);
151                 lastfil = filtered;
152             }
153             ff_timefilter_destroy(tf);
154 #else
155             printf(" [%f %f %9f]", bestpar0, bestpar1, best_error);
156 #endif
157         }
158         printf("\n");
159     }
160     return 0;
161 }
162 #endif