[FFmpeg-cvslog] swscale: handle complete dimensions for monoblack/white.

Ronald S. Bultje git at videolan.org
Thu Apr 5 22:44:33 CEST 2012


ffmpeg | branch: master | Ronald S. Bultje <rsbultje at gmail.com> | Wed Apr  4 10:50:29 2012 -0700| [bc0bdda77b8df4c963dde55793dcecb65232c21a] | committer: Ronald S. Bultje

swscale: handle complete dimensions for monoblack/white.

Fixes bug 269.

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

 libswscale/input.c  |    6 ++++--
 libswscale/output.c |   10 +++++++---
 2 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/libswscale/input.c b/libswscale/input.c
index e636eac..b485509 100644
--- a/libswscale/input.c
+++ b/libswscale/input.c
@@ -309,7 +309,8 @@ static void monowhite2Y_c(uint8_t *dst, const uint8_t *src,
                           int width, uint32_t *unused)
 {
     int i, j;
-    for (i=0; i<width/8; i++) {
+    width = (width + 7) >> 3;
+    for (i = 0; i < width; i++) {
         int d= ~src[i];
         for(j=0; j<8; j++)
             dst[8*i+j]= ((d>>(7-j))&1)*255;
@@ -320,7 +321,8 @@ static void monoblack2Y_c(uint8_t *dst, const uint8_t *src,
                           int width, uint32_t *unused)
 {
     int i, j;
-    for (i=0; i<width/8; i++) {
+    width = (width + 7) >> 3;
+    for (i = 0; i < width; i++) {
         int d= src[i];
         for(j=0; j<8; j++)
             dst[8*i+j]= ((d>>(7-j))&1)*255;
diff --git a/libswscale/output.c b/libswscale/output.c
index 533fcd9..f1acf9e 100644
--- a/libswscale/output.c
+++ b/libswscale/output.c
@@ -317,7 +317,7 @@ yuv2mono_X_c_template(SwsContext *c, const int16_t *lumFilter,
     int i;
     unsigned acc = 0;
 
-    for (i = 0; i < dstW - 1; i += 2) {
+    for (i = 0; i < dstW; i += 2) {
         int j;
         int Y1 = 1 << 18;
         int Y2 = 1 << 18;
@@ -338,6 +338,10 @@ yuv2mono_X_c_template(SwsContext *c, const int16_t *lumFilter,
             output_pixel(*dest++, acc);
         }
     }
+
+    if (i & 6) {
+        output_pixel(*dest, acc);
+    }
 }
 
 static av_always_inline void
@@ -352,7 +356,7 @@ yuv2mono_2_c_template(SwsContext *c, const int16_t *buf[2],
     int  yalpha1 = 4095 - yalpha;
     int i;
 
-    for (i = 0; i < dstW - 7; i += 8) {
+    for (i = 0; i < dstW; i += 8) {
         int Y, acc = 0;
 
         Y = (buf0[i + 0] * yalpha1 + buf1[i + 0] * yalpha) >> 19;
@@ -385,7 +389,7 @@ yuv2mono_1_c_template(SwsContext *c, const int16_t *buf0,
     const uint8_t * const d128 = dither_8x8_220[y & 7];
     int i;
 
-    for (i = 0; i < dstW - 7; i += 8) {
+    for (i = 0; i < dstW; i += 8) {
         int acc = 0;
 
         accumulate_bit(acc, (buf0[i + 0] >> 7) + d128[0]);



More information about the ffmpeg-cvslog mailing list