Skip to content
Snippets Groups Projects
Commit 118b1ba4 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

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: default avatarMichael Niedermayer <michael@niedermayer.cc>
parent ed4257de
No related branches found
No related tags found
No related merge requests found
......@@ -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)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment