This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avfilter/vf_atadenoise: compensate for small overall brightness loss
This is very hard to spot.
tags/n4.3
Paul B Mahol
5 years ago
parent
b20dee813a
commit
c3985c0ea8
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavfilter/vf_atadenoise.c
+ 1
- 1
libavfilter/vf_atadenoise.c
View File
@@ -169,7 +169,7 @@ static void filter_row##name(const uint8_t *ssrc, uint8_t *ddst, \
sum += srcix; \
} \
\
dst[x] =
sum / (r + l + 1);
\
dst[x] =
(sum + ((r + l + 1) >> 1)) / (r + l + 1);
\
} \
}
Write
Preview
Loading…
Cancel
Save