]> git.sesse.net Git - ffmpeg/blob - libavdevice/timefilter.c
Merge remote-tracking branch 'qatar/master'
[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/mem.h"
26 #include "config.h"
27 #include "timefilter.h"
28
29 struct TimeFilter {
30     /// Delay Locked Loop data. These variables refer to mathematical
31     /// concepts described in: http://www.kokkinizita.net/papers/usingdll.pdf
32     double cycle_time;
33     double feedback2_factor;
34     double feedback3_factor;
35     double clock_period;
36     int count;
37 };
38
39 /* 1 - exp(-x) using a 3-order power series */
40 static double qexpneg(double x)
41 {
42     return 1 - 1 / (1 + x * (1 + x / 2 * (1 + x / 3)));
43 }
44
45 TimeFilter *ff_timefilter_new(double time_base,
46                               double period,
47                               double bandwidth)
48 {
49     TimeFilter *self       = av_mallocz(sizeof(TimeFilter));
50     double o               = 2 * M_PI * bandwidth * period * time_base;
51     self->clock_period     = time_base;
52     self->feedback2_factor = qexpneg(M_SQRT2 * o);
53     self->feedback3_factor = qexpneg(o * o) / period;
54     return self;
55 }
56
57 void ff_timefilter_destroy(TimeFilter *self)
58 {
59     av_freep(&self);
60 }
61
62 void ff_timefilter_reset(TimeFilter *self)
63 {
64     self->count = 0;
65 }
66
67 double ff_timefilter_update(TimeFilter *self, double system_time, double period)
68 {
69     self->count++;
70     if (self->count == 1) {
71         /// init loop
72         self->cycle_time = system_time;
73     } else {
74         double loop_error;
75         self->cycle_time += self->clock_period * period;
76         /// calculate loop error
77         loop_error = system_time - self->cycle_time;
78
79         /// update loop
80         self->cycle_time   += FFMAX(self->feedback2_factor, 1.0 / self->count) * loop_error;
81         self->clock_period += self->feedback3_factor * loop_error;
82     }
83     return self->cycle_time;
84 }
85
86 #ifdef TEST
87 #include "libavutil/lfg.h"
88 #define LFG_MAX ((1LL << 32) - 1)
89
90 #undef printf
91
92 int main(void)
93 {
94     AVLFG prng;
95     double n0, n1;
96 #define SAMPLES 1000
97     double ideal[SAMPLES];
98     double samples[SAMPLES];
99     double samplet[SAMPLES];
100 #if 1
101     for (n0 = 0; n0 < 40; n0 = 2 * n0 + 1) {
102         for (n1 = 0; n1 < 10; n1 = 2 * n1 + 1) {
103 #else
104     {
105         {
106             n0 = 7;
107             n1 = 1;
108 #endif
109             double best_error = 1000000000;
110             double bestpar0   = 1;
111             double bestpar1   = 1;
112             int better, i;
113
114             av_lfg_init(&prng, 123);
115             for (i = 0; i < SAMPLES; i++) {
116                 samplet[i] = 10 + i + (av_lfg_get(&prng) < LFG_MAX/2 ? 0 : 0.999);
117                 ideal[i]   = samplet[i] + n1 * i / (1000);
118                 samples[i] = ideal[i] + n0 * (av_lfg_get(&prng) - LFG_MAX / 2) / (LFG_MAX * 10LL);
119                 if(i && samples[i]<samples[i-1])
120                     samples[i]=samples[i-1]+0.001;
121             }
122
123             do {
124                 double par0, par1;
125                 better = 0;
126                 for (par0 = bestpar0 * 0.8; par0 <= bestpar0 * 1.21; par0 += bestpar0 * 0.05) {
127                     for (par1 = bestpar1 * 0.8; par1 <= bestpar1 * 1.21; par1 += bestpar1 * 0.05) {
128                         double error   = 0;
129                         TimeFilter *tf = ff_timefilter_new(1, par0, par1);
130                         for (i = 0; i < SAMPLES; i++) {
131                             double filtered;
132                             filtered = ff_timefilter_update(tf, samples[i], i ? (samplet[i] - samplet[i-1]) : 1);
133                             if(filtered < 0 || filtered > 1000000000)
134                                 printf("filter is unstable\n");
135                             error   += (filtered - ideal[i]) * (filtered - ideal[i]);
136                         }
137                         ff_timefilter_destroy(tf);
138                         if (error < best_error) {
139                             best_error = error;
140                             bestpar0   = par0;
141                             bestpar1   = par1;
142                             better     = 1;
143                         }
144                     }
145                 }
146             } while (better);
147 #if 0
148             double lastfil = 9;
149             TimeFilter *tf = ff_timefilter_new(1, bestpar0, bestpar1);
150             for (i = 0; i < SAMPLES; i++) {
151                 double filtered;
152                 filtered = ff_timefilter_update(tf, samples[i], 1);
153                 printf("%f %f %f %f\n", i - samples[i] + 10, filtered - samples[i],
154                        samples[FFMAX(i, 1)] - samples[FFMAX(i - 1, 0)], filtered - lastfil);
155                 lastfil = filtered;
156             }
157             ff_timefilter_destroy(tf);
158 #else
159             printf(" [%f %f %9f]", bestpar0, bestpar1, best_error);
160 #endif
161         }
162         printf("\n");
163     }
164     return 0;
165 }
166 #endif