Lines Matching defs:buf_size
210 unsigned buf_size = 0;
269 buf_size = bytestream_get_be16(&buf);
270 if (buf_size <= 1 || palette_size < 0) {
273 buf_size, palette_size);
278 if (buf_size >= 41) {
462 * @param buf_size
465 static void decodeplane8(uint8_t *dst, const uint8_t *buf, int buf_size, int plane)
477 } while (--buf_size);
484 * @param buf_size
487 static void decodeplane32(uint32_t *dst, const uint8_t *buf, int buf_size, int plane)
502 } while (--buf_size);
521 * @param buf_size the plane size in bytes
524 const uint32_t *const pal, unsigned buf_size)
535 } while (--buf_size);
1533 int buf_size = avpkt->size;
1534 const uint8_t *buf_end = buf + buf_size;
1549 buf_size -= bytestream2_tell(gb);
1730 decode_deep_rle32(frame->data[0], buf, buf_size, avctx->width, avctx->height, frame->linesize[0]);
1787 decode_deep_tvdc32(frame->data[0], buf, buf_size, avctx->width, avctx->height, frame->linesize[0], s->tvdc);
1906 return buf_size;