* Change extern inline to static inline so that it will compile without optimization
authorPhilip Gladstone <philipjsg@users.sourceforge.net>
Thu, 9 May 2002 01:21:24 +0000 (01:21 +0000)
committerPhilip Gladstone <philipjsg@users.sourceforge.net>
Thu, 9 May 2002 01:21:24 +0000 (01:21 +0000)
Originally committed as revision 467 to svn://svn.ffmpeg.org/ffmpeg/trunk

libav/tick.h

index 8b6d6b4..46bd865 100644 (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;