[FFmpeg-cvslog] avfilter/hermite: fix "libavfilter/hermite.h:19:15: error: no previous prototype for hermite_interpolation"

Michael Niedermayer git at videolan.org
Tue Sep 22 23:54:56 CEST 2015


ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Tue Sep 22 23:41:44 2015 +0200| [118b1ba43bfa53ffdd18955f8057ca3763aa1975] | committer: Michael Niedermayer

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

Fix build

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

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=118b1ba43bfa53ffdd18955f8057ca3763aa1975
---

 libavfilter/hermite.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/hermite.h b/libavfilter/hermite.h
index 6142391..5a4645f 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)
 {



More information about the ffmpeg-cvslog mailing list