Commit 9224c7f0 authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vf_fspp: clarify comment

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 18982f08
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment