Skip to content
This repository has been archived by the owner on Jul 12, 2019. It is now read-only.

Commit

Permalink
genericfilters 1.0.0+git20160316
Browse files Browse the repository at this point in the history
  • Loading branch information
darealshinji committed Apr 29, 2016
1 parent 74c0ee3 commit 3c26189
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ sudo apt-get install vapoursynth-extra-plugins
[flash3kyuu_deband 2.0.0](https://github.com/SAPikachu/flash3kyuu_deband)<br>
[fluxsmooth 1.0+git20141002](https://github.com/dubhater/vapoursynth-fluxsmooth)<br>
[fmtconv r17+git20150726](https://github.com/EleonoreMizo/fmtconv)<br>
[genericfilters 1.0.0+git20150505](https://github.com/myrsloik/GenericFilters)<br>
[genericfilters 1.0.0+git20160316](https://github.com/myrsloik/GenericFilters)<br>
[histogram 1.0+git20141212](https://github.com/dubhater/vapoursynth-histogram)<br>
[imagereader 0.2.1](https://github.com/chikuzen/vsimagereader)<br>
[it 1.2](https://github.com/HomeOfVapourSynthEvolution/VapourSynth-IT)<br>
Expand Down
2 changes: 1 addition & 1 deletion copyright
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ License: WTFPL

Files: plugins/genericfilters/*
Copyright: 2012-2013, 2015 Oka Motofumi
2013-2015 Fredrik Mellbin
2013-2016 Fredrik Mellbin
License: LGPL-2.1

Files: plugins/it/*
Expand Down
2 changes: 1 addition & 1 deletion plugins/genericfilters/src/convolution/deflate.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ proc_16bit(uint8_t *buff, int bstride, int width, int height, int stride,
line_copy16(p1, srcp, width, 1);

for (int y = 0; y < height; y++) {
srcp += stride;
srcp += stride * (y < height - 1 ? 1 : -1);
line_copy16(p2, srcp, width, 1);
uint16_t *coordinates[] = {p0 - 1, p0, p0 + 1,
p1 - 1, p1 + 1,
Expand Down
2 changes: 1 addition & 1 deletion plugins/genericfilters/src/convolution/inflate.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ proc_16bit(uint8_t *buff, int bstride, int width, int height, int stride,
line_copy16(p1, srcp, width, 1);

for (int y = 0; y < height; y++) {
srcp += stride;
srcp += stride * (y < height - 1 ? 1 : -1);
line_copy16(p2, srcp, width, 1);
uint16_t *coordinates[] = {p0 - 1, p0, p0 + 1,
p1 - 1, p1 + 1,
Expand Down

0 comments on commit 3c26189

Please sign in to comment.