Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-09-23 00:41:44 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2015-09-23 00:45:03 +0300
commit118b1ba43bfa53ffdd18955f8057ca3763aa1975 (patch)
tree27fd38afa71de0aa14eee4a419d0caf2d1ecdd62 /libavfilter/hermite.h
parented4257de2d74ce5e5ae77ae96d58c58f1bbaeacd (diff)
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>
Diffstat (limited to 'libavfilter/hermite.h')
-rw-r--r--libavfilter/hermite.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/hermite.h b/libavfilter/hermite.h
index 6142391b2e..5a4645fea9 100644
--- a/libavfilter/hermite.h
+++ b/libavfilter/hermite.h
@@ -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)
{