2009-03-06 01:45:18 +02:00
|
|
|
/*
|
|
|
|
* Delay Locked Loop based time filter
|
|
|
|
* Copyright (c) 2009 Samalyse
|
|
|
|
* Author: Olivier Guilyardi <olivier samalyse com>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "avformat.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;
|
|
|
|
double integrator2_state;
|
|
|
|
};
|
|
|
|
|
2009-03-06 02:09:14 +02:00
|
|
|
TimeFilter * ff_timefilter_new(double feedback2_factor, double feedback3_factor)
|
2009-03-06 01:45:18 +02:00
|
|
|
{
|
|
|
|
TimeFilter *self = av_mallocz(sizeof(TimeFilter));
|
2009-03-06 02:09:14 +02:00
|
|
|
self->integrator2_state = 1.0;
|
2009-03-06 01:45:18 +02:00
|
|
|
self->feedback2_factor = feedback2_factor;
|
|
|
|
self->feedback3_factor = feedback3_factor;
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ff_timefilter_destroy(TimeFilter *self)
|
|
|
|
{
|
|
|
|
av_freep(&self);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ff_timefilter_reset(TimeFilter *self)
|
|
|
|
{
|
|
|
|
self->cycle_time = 0;
|
|
|
|
}
|
|
|
|
|
2009-03-06 02:14:44 +02:00
|
|
|
double ff_timefilter_update(TimeFilter *self, double system_time, double period)
|
2009-03-06 01:45:18 +02:00
|
|
|
{
|
|
|
|
if (!self->cycle_time) {
|
|
|
|
/// init loop
|
|
|
|
self->cycle_time = system_time;
|
|
|
|
} else {
|
2009-03-06 01:57:42 +02:00
|
|
|
double loop_error;
|
2009-03-06 02:09:14 +02:00
|
|
|
self->cycle_time+= self->integrator2_state * period;
|
2009-03-06 01:45:18 +02:00
|
|
|
/// calculate loop error
|
2009-03-06 01:57:42 +02:00
|
|
|
loop_error = system_time - self->cycle_time;
|
2009-03-06 01:45:18 +02:00
|
|
|
|
|
|
|
/// update loop
|
2009-03-06 01:57:42 +02:00
|
|
|
self->cycle_time += self->feedback2_factor * loop_error;
|
2009-03-06 02:09:14 +02:00
|
|
|
self->integrator2_state += self->feedback3_factor * loop_error / period;
|
2009-03-06 01:45:18 +02:00
|
|
|
}
|
|
|
|
return self->cycle_time;
|
|
|
|
}
|