projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fa6c795
)
vf_hqdn3d: remove duplicate inline
author
Michael Niedermayer
<michaelni@gmx.at>
Tue, 28 Aug 2012 03:19:48 +0000
(
05:19
+0200)
committer
Michael Niedermayer
<michaelni@gmx.at>
Tue, 28 Aug 2012 03:31:20 +0000
(
05:31
+0200)
This should fix compilation with gcc 3
Found-by: ubitux
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavfilter/vf_hqdn3d.c
patch
|
blob
|
history
diff --git
a/libavfilter/vf_hqdn3d.c
b/libavfilter/vf_hqdn3d.c
index
f7f4297
..
51c7e87
100644
(file)
--- 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];