Browse code

avfilter/hermite: fix "libavfilter/hermite.h:19:15: error: no previous prototype for hermite_interpolation"

Fix build

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

Michael Niedermayer authored on 2015/09/23 06:41:44
Showing 1 changed files
... ...
@@ -16,7 +16,7 @@
16 16
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 17
  */
18 18
 
19
-inline double hermite_interpolation(double x, double x0, double x1,
19
+static inline double hermite_interpolation(double x, double x0, double x1,
20 20
                                     double p0, double p1,
21 21
                                     double m0, double m1)
22 22
 {