diff options
author | Philip Gladstone <philipjsg@users.sourceforge.net> | 2002-05-09 01:21:24 +0000 |
---|---|---|
committer | Philip Gladstone <philipjsg@users.sourceforge.net> | 2002-05-09 01:21:24 +0000 |
commit | ec6ac5e1fbd1facd1b6dcebbec4b617d2262f81d (patch) | |
tree | fb335f8507341ab9655f6293df87ba6f2c4c94a2 /libav | |
parent | 5d6ef63fdca1f810c58b38a171a4904639213dee (diff) | |
download | ffmpeg-ec6ac5e1fbd1facd1b6dcebbec4b617d2262f81d.tar.gz |
* 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
Diffstat (limited to 'libav')
-rw-r--r-- | libav/tick.h | 2 |
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; |