[FFmpeg-cvslog] avfilter/vf_threshold: use correct linesize
Paul B Mahol
git at videolan.org
Mon Nov 27 19:05:53 EET 2017
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Mon Nov 27 18:04:39 2017 +0100| [eb86f72fcaf3abd6c7d243d7c85ab0440f752be5] | committer: Paul B Mahol
avfilter/vf_threshold: use correct linesize
Signed-off-by: Paul B Mahol <onemda at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=eb86f72fcaf3abd6c7d243d7c85ab0440f752be5
---
libavfilter/vf_threshold.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavfilter/vf_threshold.c b/libavfilter/vf_threshold.c
index 88f6ef28d7..76c3ddb892 100644
--- a/libavfilter/vf_threshold.c
+++ b/libavfilter/vf_threshold.c
@@ -155,7 +155,7 @@ static void threshold8(const uint8_t *in, const uint8_t *threshold,
in += ilinesize;
threshold += tlinesize;
min += flinesize;
- max += flinesize;
+ max += slinesize;
out += olinesize;
}
}
@@ -183,7 +183,7 @@ static void threshold16(const uint8_t *iin, const uint8_t *tthreshold,
in += ilinesize / 2;
threshold += tlinesize / 2;
min += flinesize / 2;
- max += flinesize / 2;
+ max += slinesize / 2;
out += olinesize / 2;
}
}
More information about the ffmpeg-cvslog
mailing list