[FFmpeg-cvslog] lavfi/gradfun: do not increment DC pointer for odd values.
Clément Bœsch
git at videolan.org
Thu Mar 28 13:11:16 CET 2013
ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Wed Dec 5 04:58:03 2012 +0100| [8b9a153ef3673d5847291987fa0dcddeac4a640b] | committer: Anton Khirnov
lavfi/gradfun: do not increment DC pointer for odd values.
First DC is only used once otherwise. This also makes the code
consistent with ASM versions.
Signed-off-by: Anton Khirnov <anton at khirnov.net>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8b9a153ef3673d5847291987fa0dcddeac4a640b
---
libavfilter/vf_gradfun.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/vf_gradfun.c b/libavfilter/vf_gradfun.c
index ca7ef69..80b7e41 100644
--- a/libavfilter/vf_gradfun.c
+++ b/libavfilter/vf_gradfun.c
@@ -56,7 +56,7 @@ DECLARE_ALIGNED(16, static const uint16_t, dither)[8][8] = {
void ff_gradfun_filter_line_c(uint8_t *dst, uint8_t *src, uint16_t *dc, int width, int thresh, const uint16_t *dithers)
{
int x;
- for (x = 0; x < width; x++, dc += x & 1) {
+ for (x = 0; x < width; dc += x & 1, x++) {
int pix = src[x] << 7;
int delta = dc[0] - pix;
int m = abs(delta) * thresh >> 16;
More information about the ffmpeg-cvslog
mailing list