Lines Matching refs:planebuf
50 uint8_t * planebuf;
388 av_freep(&s->planebuf);
435 s->planebuf = av_malloc(s->planesize * avctx->height + AV_INPUT_BUFFER_PADDING_SIZE);
436 if (!s->planebuf)
1671 buf += decode_byterun(s->planebuf, s->planesize, gb);
1673 memcpy(video, s->planebuf, s->planesize);
1676 decodeplane8(row, s->planebuf, s->planesize, plane);
1684 buf += decode_byterun(s->planebuf, s->planesize, gb);
1685 decodeplane32(s->mask_buf, s->planebuf, s->planesize, plane);
1695 buf += decode_byterun(s->planebuf, s->planesize, gb);
1697 memcpy(video, s->planebuf, s->planesize);
1700 decodeplane8(s->ham_buf, s->planebuf, s->planesize, plane);
1709 buf += decode_byterun(s->planebuf, s->planesize, gb);
1710 decodeplane32((uint32_t *)row, s->planebuf, s->planesize, plane);
1766 decode_byterun2(s->planebuf, avctx->height, s->planesize, gb);
1769 decodeplane8(row, s->planebuf + s->planesize * y, s->planesize, plane);