Commit 118b1ba4 authored by Michael Niedermayer's avatar Michael Niedermayer

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

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

Fix build
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent ed4257de
......@@ -16,7 +16,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
inline double hermite_interpolation(double x, double x0, double x1,
static inline double hermite_interpolation(double x, double x0, double x1,
double p0, double p1,
double m0, double m1)
{
......
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