mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
* 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
This commit is contained in:
+1
-1
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user