mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 03:39:45 +00:00
vf_hqdn3d: remove duplicate inline
This should fix compilation with gcc 3 Found-by: ubitux Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
fa6c795c3f
commit
4f92d31aa4
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user