1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-26 23:32:04 +02:00
ffmpeg/libav/tick.h
Philip Gladstone ec6ac5e1fb * Change extern inline to static inline so that it will compile without optimization
Originally committed as revision 467 to svn://svn.ffmpeg.org/ffmpeg/trunk
2002-05-09 01:21:24 +00:00

32 lines
690 B
C

/* tick.h - Compute successive integer multiples of a rational
* number without long-term rounding error.
* (c)2002 by Lennert Buytenhek <buytenh@gnu.org>
* File licensed under the GPL, see http://www.fsf.org/ for more info.
* Dedicated to Marija Kulikova.
*/
#include "avcodec.h"
typedef struct Ticker {
int value;
int inrate;
int outrate;
int div;
int mod;
} Ticker;
extern void ticker_init(Ticker *tick, INT64 inrate, INT64 outrate);
static inline int ticker_tick(Ticker *tick, int num)
{
int n = num * tick->div;
tick->value += num * tick->mod;
while (tick->value > 0) {
tick->value -= tick->inrate;
n++;
}
return n;
}