Commit fbfd783c authored by philipjsg's avatar philipjsg

* Change extern inline to static inline so that it will compile without optimization


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@467 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6ff5704c
...@@ -17,7 +17,7 @@ typedef struct Ticker { ...@@ -17,7 +17,7 @@ typedef struct Ticker {
extern void ticker_init(Ticker *tick, INT64 inrate, INT64 outrate); 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; int n = num * tick->div;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment