summaryrefslogtreecommitdiff
path: root/libavfilter/vf_hqdn3d.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2012-08-27 15:55:43 +0300
committerMartin Storsjö <martin@martin.st>2012-08-27 16:40:59 +0300
commitb441a4517be7d399417548738ed8f2671dd0c4ae (patch)
tree52bd24ee6a69f6ed464cffdba35535542d8225f6 /libavfilter/vf_hqdn3d.c
parent2bd67175c7e16c1f5da15c9e55ae6db4ab1d23fd (diff)
vf_hqdn3d: Remove a duplicate inline declaration
Compilation seems to fail on GCC 3.4 due to this duplicate declaration. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavfilter/vf_hqdn3d.c')
-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 5bb896cc98..71b670d3f1 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];