Fix bug with time==0 being special.

Originally committed as revision 17843 to svn://svn.ffmpeg.org/ffmpeg/trunk
release/0.6
Michael Niedermayer 16 years ago
parent 494065ca36
commit 8537591abc
  1. 3
      libavformat/timefilter.c

@ -51,14 +51,13 @@ void ff_timefilter_destroy(TimeFilter *self)
void ff_timefilter_reset(TimeFilter *self)
{
self->cycle_time = 0;
self->count = 0;
}
double ff_timefilter_update(TimeFilter *self, double system_time, double period)
{
self->count++;
if (!self->cycle_time) {
if (self->count==1) {
/// init loop
self->cycle_time = system_time;
} else {

Loading…
Cancel
Save