1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-07-13 08:00:49 +02:00

* 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
This commit is contained in:
Philip Gladstone 2002-05-09 01:21:24 +00:00
parent 5d6ef63fdc
commit ec6ac5e1fb

View File

@ -17,7 +17,7 @@ typedef struct Ticker {
extern void ticker_init(Ticker *tick, INT64 inrate, INT64 outrate);
extern inline int ticker_tick(Ticker *tick, int num)
static inline int ticker_tick(Ticker *tick, int num)
{
int n = num * tick->div;