2009-03-05 23:45:18 +00:00
|
|
|
/*
|
|
|
|
* Delay Locked Loop based time filter
|
|
|
|
* Copyright (c) 2009 Samalyse
|
2009-03-06 20:51:50 +00:00
|
|
|
* Copyright (c) 2009 Michael Niedermayer
|
2009-03-05 23:45:18 +00:00
|
|
|
* Author: Olivier Guilyardi <olivier samalyse com>
|
2009-03-06 20:51:50 +00:00
|
|
|
* Michael Niedermayer <michaelni gmx at>
|
2009-03-05 23:45:18 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2012-08-06 13:49:32 +00:00
|
|
|
#include "libavutil/common.h"
|
2012-01-11 19:27:20 +00:00
|
|
|
#include "libavutil/mem.h"
|
2016-03-21 19:06:18 +00:00
|
|
|
|
2009-03-05 23:45:18 +00:00
|
|
|
#include "timefilter.h"
|
|
|
|
|
|
|
|
struct TimeFilter {
|
2012-10-05 17:29:18 +00:00
|
|
|
// Delay Locked Loop data. These variables refer to mathematical
|
|
|
|
// concepts described in: http://www.kokkinizita.net/papers/usingdll.pdf
|
2009-03-05 23:45:18 +00:00
|
|
|
double cycle_time;
|
|
|
|
double feedback2_factor;
|
|
|
|
double feedback3_factor;
|
2009-03-06 00:47:16 +00:00
|
|
|
double clock_period;
|
2009-03-06 00:20:55 +00:00
|
|
|
int count;
|
2009-03-05 23:45:18 +00:00
|
|
|
};
|
|
|
|
|
2012-02-15 18:15:45 +00:00
|
|
|
/* 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)
|
2009-03-05 23:45:18 +00:00
|
|
|
{
|
2012-01-11 19:27:20 +00:00
|
|
|
TimeFilter *self = av_mallocz(sizeof(TimeFilter));
|
2012-02-15 18:15:45 +00:00
|
|
|
double o = 2 * M_PI * bandwidth * period * time_base;
|
2013-10-22 17:46:37 +00:00
|
|
|
|
|
|
|
if (!self)
|
|
|
|
return NULL;
|
|
|
|
|
2012-02-15 18:15:45 +00:00
|
|
|
self->clock_period = time_base;
|
|
|
|
self->feedback2_factor = qexpneg(M_SQRT2 * o);
|
2012-03-02 10:49:27 +00:00
|
|
|
self->feedback3_factor = qexpneg(o * o) / period;
|
2009-03-05 23:45:18 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ff_timefilter_destroy(TimeFilter *self)
|
|
|
|
{
|
|
|
|
av_freep(&self);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ff_timefilter_reset(TimeFilter *self)
|
|
|
|
{
|
2012-01-11 19:27:20 +00:00
|
|
|
self->count = 0;
|
2009-03-05 23:45:18 +00:00
|
|
|
}
|
|
|
|
|
2009-03-06 00:14:44 +00:00
|
|
|
double ff_timefilter_update(TimeFilter *self, double system_time, double period)
|
2009-03-05 23:45:18 +00:00
|
|
|
{
|
2009-03-06 00:20:55 +00:00
|
|
|
self->count++;
|
2012-01-11 19:27:20 +00:00
|
|
|
if (self->count == 1) {
|
|
|
|
self->cycle_time = system_time;
|
2009-03-05 23:45:18 +00:00
|
|
|
} else {
|
2009-03-05 23:57:42 +00:00
|
|
|
double loop_error;
|
2012-01-11 19:27:20 +00:00
|
|
|
self->cycle_time += self->clock_period * period;
|
|
|
|
loop_error = system_time - self->cycle_time;
|
2009-03-05 23:45:18 +00:00
|
|
|
|
2012-01-07 18:07:42 +00:00
|
|
|
self->cycle_time += FFMAX(self->feedback2_factor, 1.0 / self->count) * loop_error;
|
2012-03-02 10:49:27 +00:00
|
|
|
self->clock_period += self->feedback3_factor * loop_error;
|
2009-03-05 23:45:18 +00:00
|
|
|
}
|
|
|
|
return self->cycle_time;
|
|
|
|
}
|
2009-03-06 00:26:51 +00:00
|
|
|
|
2012-03-04 11:17:02 +00:00
|
|
|
double ff_timefilter_eval(TimeFilter *self, double delta)
|
|
|
|
{
|
|
|
|
return self->cycle_time + self->clock_period * delta;
|
|
|
|
}
|