summaryrefslogtreecommitdiff
path: root/libavfilter/vf_fspp.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-12-26 18:17:12 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-12-26 18:17:12 +0100
commit9224c7f0dd18a0adbbd953f220c93641d8f3043e (patch)
tree98fdc12583f644505ce890cc9a33689d2f0acde1 /libavfilter/vf_fspp.c
parent18982f084c3e3961947aad1b48ae72f9a276f13b (diff)
avfilter/vf_fspp: clarify comment
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_fspp.c')
-rw-r--r--libavfilter/vf_fspp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_fspp.c b/libavfilter/vf_fspp.c
index 4a1b7e03c2..2e73421b28 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);