Browse Source

* 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
tags/v0.5
Philip Gladstone 23 years ago
parent
commit
ec6ac5e1fb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libav/tick.h

+ 1
- 1
libav/tick.h View File

@@ -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;




Loading…
Cancel
Save