[FFmpeg-cvslog] vf_hqdn3d: remove duplicate inline

Michael Niedermayer git at videolan.org
Tue Aug 28 05:32:26 CEST 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Tue Aug 28 05:19:48 2012 +0200| [4f92d31aa4b152cb191b8ee373ba04177848651a] | committer: Michael Niedermayer

vf_hqdn3d: remove duplicate inline

This should fix compilation with gcc 3

Found-by: ubitux
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

 libavfilter/vf_hqdn3d.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/vf_hqdn3d.c b/libavfilter/vf_hqdn3d.c
index f7f4297..51c7e87 100644
--- a/libavfilter/vf_hqdn3d.c
+++ b/libavfilter/vf_hqdn3d.c
@@ -56,7 +56,7 @@ void ff_hqdn3d_row_16_x86(uint8_t *src, uint8_t *dst, uint16_t *line_ant, uint16
                     : AV_WN16A(dst+(x)*2, RIGHTSHIFT(val, 16-depth)))
 
 av_always_inline
-static inline uint32_t lowpass(int prev, int cur, int16_t *coef, int depth)
+static uint32_t lowpass(int prev, int cur, int16_t *coef, int depth)
 {
     int d = (prev - cur) >> (8 - LUT_BITS);
     return cur + coef[d];



More information about the ffmpeg-cvslog mailing list