Lines Matching refs:data
48 RLE_ESC_FA = 250, ///< INTRA: skip block, INTER: copy data from reference
68 uint8_t *pixels[2]; ///< pointer to the actual pixel data of the buffers above
99 int data_size; ///< size of the frame data in bytes
579 * @param data_ptr pointer to the compressed data
608 /* so we don't need to do data copying for each RLE code later */
706 av_log(avctx, AV_LOG_ERROR, "Mode %d: invalid VQ data\n", mode);
856 Plane *plane, const uint8_t *data, int32_t data_size,
862 /* each plane data starts with mc_vector_count field, */
863 /* an optional array of motion vectors followed by the vq data */
864 num_vectors = bytestream_get_le32(&data); data_size -= 4;
874 ctx->mc_vectors = num_vectors ? data : 0;
877 init_get_bits(&ctx->gb, &data[num_vectors * 2], (data_size - num_vectors * 2) << 3);
881 ctx->last_byte = data + data_size;
970 /* so we use that sorting algo for determining planes data sizes */
1022 * @param[in] buf_sel indicates which frame buffer the input data stored in
1072 const uint8_t *buf = avpkt->data;
1082 // we have processed 16 bytes but no data was decoded
1114 frame->data[0], frame->linesize[0],
1117 frame->data[1], frame->linesize[1],
1120 frame->data[2], frame->linesize[2],