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
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2009-03-05 23:45:18 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2009-03-05 23:45:18 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2009-03-05 23:45:18 +00:00
|
|
|
* 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
|
2011-03-18 17:35:10 +00:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2009-03-05 23:45:18 +00:00
|
|
|
* 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-01-11 19:27:20 +00:00
|
|
|
TimeFilter *ff_timefilter_new(double clock_period,
|
|
|
|
double feedback2_factor,
|
|
|
|
double feedback3_factor)
|
2009-03-05 23:45:18 +00:00
|
|
|
{
|
2013-10-22 17:46:37 +00:00
|
|
|
TimeFilter *self = av_mallocz(sizeof(TimeFilter));
|
|
|
|
|
|
|
|
if (!self)
|
|
|
|
return NULL;
|
|
|
|
|
2012-01-11 19:27:20 +00:00
|
|
|
self->clock_period = clock_period;
|
|
|
|
self->feedback2_factor = feedback2_factor;
|
|
|
|
self->feedback3_factor = feedback3_factor;
|
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;
|
2009-03-06 00:47:16 +00:00
|
|
|
self->clock_period += self->feedback3_factor * loop_error / period;
|
2009-03-05 23:45:18 +00:00
|
|
|
}
|
|
|
|
return self->cycle_time;
|
|
|
|
}
|