summaryrefslogtreecommitdiffstats
path: root/libavfilter
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-08-28 05:19:48 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-08-28 05:31:20 +0200
commit4f92d31aa4b152cb191b8ee373ba04177848651a (patch)
tree9b7656da2e8cf65b7c1648def590dff9d8c84401 /libavfilter
parentfa6c795c3f40c8739c2263b8cef12c9564ded0b9 (diff)
downloadffmpeg-streaming-4f92d31aa4b152cb191b8ee373ba04177848651a.zip
ffmpeg-streaming-4f92d31aa4b152cb191b8ee373ba04177848651a.tar.gz
vf_hqdn3d: remove duplicate inline
This should fix compilation with gcc 3 Found-by: ubitux Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_hqdn3d.c2
1 files changed, 1 insertions, 1 deletions
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];
OpenPOWER on IntegriCloud