From ec6ac5e1fbd1facd1b6dcebbec4b617d2262f81d Mon Sep 17 00:00:00 2001
From: Philip Gladstone <philipjsg@users.sourceforge.net>
Date: Thu, 9 May 2002 01:21:24 +0000
Subject: [PATCH] * 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
---
 libav/tick.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libav/tick.h b/libav/tick.h
index 8b6d6b4421b..46bd865eb5c 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;
 
-- 
GitLab