summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Gladstone <philipjsg@users.sourceforge.net>2002-05-09 01:21:24 +0000
committerPhilip Gladstone <philipjsg@users.sourceforge.net>2002-05-09 01:21:24 +0000
commitec6ac5e1fbd1facd1b6dcebbec4b617d2262f81d (patch)
treefb335f8507341ab9655f6293df87ba6f2c4c94a2
parent5d6ef63fdca1f810c58b38a171a4904639213dee (diff)
* 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
-rw-r--r--libav/tick.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libav/tick.h b/libav/tick.h
index 8b6d6b4421..46bd865eb5 100644
--- a/libav/tick.h
+++ b/libav/tick.h
@@ -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;