diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-08-28 05:19:48 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-08-28 05:31:20 +0200 |
commit | 4f92d31aa4b152cb191b8ee373ba04177848651a (patch) | |
tree | 9b7656da2e8cf65b7c1648def590dff9d8c84401 /libavfilter/vf_hqdn3d.c | |
parent | fa6c795c3f40c8739c2263b8cef12c9564ded0b9 (diff) | |
download | ffmpeg-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/vf_hqdn3d.c')
-rw-r--r-- | libavfilter/vf_hqdn3d.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_hqdn3d.c b/libavfilter/vf_hqdn3d.c index f7f42975d7..51c7e879ab 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]; |