Lines Matching defs:decoded
205 int decoded, ret;
212 if (decoded < 0 || decoded >= buf_size) goto buf_too_small; \
213 buf += decoded; buf_size -= decoded; \
217 decoded = loco_decode_plane(l, p->data[0], avctx->width, avctx->height,
220 decoded = loco_decode_plane(l, p->data[1], avctx->width / 2, avctx->height,
223 decoded = loco_decode_plane(l, p->data[2], avctx->width / 2, avctx->height,
227 decoded = loco_decode_plane(l, p->data[0], avctx->width, avctx->height,
230 decoded = loco_decode_plane(l, p->data[2], avctx->width / 2, avctx->height / 2,
233 decoded = loco_decode_plane(l, p->data[1], avctx->width / 2, avctx->height / 2,
237 decoded = loco_decode_plane(l, p->data[1] + p->linesize[1]*(avctx->height-1), avctx->width, avctx->height,
240 decoded = loco_decode_plane(l, p->data[0] + p->linesize[0]*(avctx->height-1), avctx->width, avctx->height,
243 decoded = loco_decode_plane(l, p->data[2] + p->linesize[2]*(avctx->height-1), avctx->width, avctx->height,
253 decoded = loco_decode_plane(l, p->data[1] + p->linesize[1]*(avctx->height-1), avctx->width, avctx->height,
256 decoded = loco_decode_plane(l, p->data[0] + p->linesize[0]*(avctx->height-1), avctx->width, avctx->height,
259 decoded = loco_decode_plane(l, p->data[2] + p->linesize[2]*(avctx->height-1), avctx->width, avctx->height,
262 decoded = loco_decode_plane(l, p->data[3] + p->linesize[3]*(avctx->height-1), avctx->width, avctx->height,
269 if (decoded < 0 || decoded > buf_size)
271 buf_size -= decoded;