[FFmpeg-cvslog] swscale: fix signed overflow in yuv2mono_X_c_template

Mans Rullgard git at videolan.org
Sun Nov 27 00:39:17 CET 2011


ffmpeg | branch: master | Mans Rullgard <mans at mansr.com> | Sat Nov 26 21:53:00 2011 +0000| [7c5ce99bd92fb480b7235cbc9a005f7e6d31f1d7] | committer: Mans Rullgard

swscale: fix signed overflow in yuv2mono_X_c_template

As old bits are shifted out of the accumulator, they cause signed
overflows when they reach the end.  Making the variable unsigned fixes
this.

Signed-off-by: Mans Rullgard <mans at mansr.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7c5ce99bd92fb480b7235cbc9a005f7e6d31f1d7
---

 libswscale/swscale.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libswscale/swscale.c b/libswscale/swscale.c
index 98daf22..975a0bd 100644
--- a/libswscale/swscale.c
+++ b/libswscale/swscale.c
@@ -510,7 +510,7 @@ yuv2mono_X_c_template(SwsContext *c, const int16_t *lumFilter,
     const uint8_t * const d128=dither_8x8_220[y&7];
     uint8_t *g = c->table_gU[128] + c->table_gV[128];
     int i;
-    int acc = 0;
+    unsigned acc = 0;
 
     for (i = 0; i < dstW - 1; i += 2) {
         int j;



More information about the ffmpeg-cvslog mailing list