Lines Matching refs:dst
37 uint8_t *dst;
45 bfi->dst = av_mallocz(avctx->width * avctx->height);
46 if (!bfi->dst)
57 uint8_t *dst = bfi->dst;
59 uint8_t *frame_end = bfi->dst + avctx->width * avctx->height;
97 while (dst != frame_end) {
125 if (dst + (length << lentab[code]) > frame_end)
134 bytestream2_get_buffer(&g, dst, length);
135 dst += length;
138 dst_offset = dst - offset;
140 if (dst_offset < bfi->dst)
143 *dst++ = *dst_offset++;
146 dst += length;
152 *dst++ = colour1;
153 *dst++ = colour2;
159 src = bfi->dst;
160 dst = frame->data[0];
162 memcpy(dst, src, avctx->width);
164 dst += frame->linesize[0];
174 av_freep(&bfi->dst);