avfilter/vf_fspp: clarify comment

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-12-26 18:17:12 +01:00
parent 18982f084c
commit 9224c7f0dd

View File

@ -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);