[FFmpeg-cvslog] avfilter/vf_fspp: clarify comment
Michael Niedermayer
git at videolan.org
Fri Dec 26 18:26:58 CET 2014
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Fri Dec 26 18:17:12 2014 +0100| [9224c7f0dd18a0adbbd953f220c93641d8f3043e] | committer: Michael Niedermayer
avfilter/vf_fspp: clarify comment
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9224c7f0dd18a0adbbd953f220c93641d8f3043e
---
libavfilter/vf_fspp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/vf_fspp.c b/libavfilter/vf_fspp.c
index 4a1b7e0..2e73421 100644
--- a/libavfilter/vf_fspp.c
+++ b/libavfilter/vf_fspp.c
@@ -245,7 +245,7 @@ static void filter(FSPPContext *p, uint8_t *dst, uint8_t *src,
}
}
- if (y & 7) { // == height & 7
+ if (y & 7) { // height % 8 != 0
if (y & 8)
p->store_slice(dst + ((y - 8) & ~7) * dst_stride, p->temp + 8 + 8 * stride,
dst_stride, stride, width, y&7, 5 - p->log2_count);
More information about the ffmpeg-cvslog
mailing list