Lines Matching defs:output
132 uint8_t *output, *output_end;
138 output = pic->data[0] + (avctx->height - 1) * pic->linesize[0];
139 output_end = output + FFABS(pic->linesize[0]);
156 output = pic->data[0] + line * pic->linesize[0];
157 output_end = output + FFABS(pic->linesize[0]);
171 output = pic->data[0] + line * pic->linesize[0] + pos * (depth >> 3);
176 if (output + p2 * (depth >> 3) > output_end) {
185 bytestream2_get_bufferu(gb, output, p2 * (depth >> 3));
186 output += p2 * (depth >> 3);
194 *(uint16_t*)output = bytestream2_get_le16u(gb);
195 output += 2;
199 *(uint32_t*)output = bytestream2_get_le32u(gb);
200 output += 4;
206 if (output + p1 * (depth >> 3) > output_end)
212 memset(output, pix[0], p1);
213 output += p1;
218 *(uint16_t*)output = pix16;
219 output += 2;
227 *output++ = pix[0];
228 *output++ = pix[1];
229 *output++ = pix[2];
235 *(uint32_t*)output = pix32;
236 output += 4;