Lines Matching refs:data
65 // Decompressed data size
103 // this at least avoids uninitialized data.
128 * @brief decompress a zlib-compressed data block into decomp_buf
130 * @param src_len data length in input buffer
167 const uint8_t *buf = avpkt->data;
172 unsigned char *encoded = avpkt->data, *outptr;
186 outptr = frame->data[0]; // Output image pointer
384 y_out = frame->data[0] + (height - 1) * frame->linesize[0];
386 u_out = FF_PTR_ADD(frame->data[1], offset);
388 v_out = FF_PTR_ADD(frame->data[2], offset);
461 u_out = frame->data[1] + ((height >> 1) - 1) * frame->linesize[1];
462 v_out = frame->data[2] + ((height >> 1) - 1) * frame->linesize[2];