diff options
| author | Mattias Andrée <maandree@kth.se> | 2017-05-06 11:47:55 +0200 |
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2017-05-06 11:47:55 +0200 |
| commit | ff2ebdc2a84bc96bd59026f51556af9001e4cc61 (patch) | |
| tree | 093e8e70b1fae8a89fa1ecb5006f7da30a04aba4 | |
| parent | Fix bad function cast (diff) | |
| download | blind-ff2ebdc2a84bc96bd59026f51556af9001e4cc61.tar.gz blind-ff2ebdc2a84bc96bd59026f51556af9001e4cc61.tar.bz2 blind-ff2ebdc2a84bc96bd59026f51556af9001e4cc61.tar.xz | |
blind-gauss-blur: fix -a
Signed-off-by: Mattias Andrée <maandree@kth.se>
| -rw-r--r-- | src/blind-gauss-blur.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/blind-gauss-blur.c b/src/blind-gauss-blur.c index 031860d..3796fa4 100644 --- a/src/blind-gauss-blur.c +++ b/src/blind-gauss-blur.c @@ -210,12 +210,6 @@ process_xyza(char *restrict output, char *restrict cbuf, char *restrict sbuf, memset(img, 0, cn);\ start = 0, end = colour->height;\ is_master = efork_jobs(&start, &end, jobs, &children);\ - if (noalpha) {\ - i1 = start * colour->width;\ - for (y1 = start; y1 < end; y1++)\ - for (x1 = 0; x1 < colour->width; x1++, i1++)\ - img[i1][3] = 1;\ - }\ i1 = start * colour->width;\ for (y1 = start; y1 < end; y1++) {\ for (x1 = 0; x1 < colour->width; x1++, i1++) {\ @@ -276,7 +270,7 @@ process_xyza(char *restrict output, char *restrict cbuf, char *restrict sbuf, } /* ensure the video if opaque if -a was used */ - if (!noalpha) { + if (noalpha) { i1 = start * colour->width; for (y1 = start; y1 < end; y1++) for (x1 = 0; x1 < colour->width; x1++, i1++) |
