Lines Matching defs:tmp
116 uint8_t *tmp;
204 if (uncompress(td->tmp, &dest_len, src, compressed_size) != Z_OK ||
210 s->dsp.predictor(td->tmp, uncompressed_size);
211 s->dsp.reorder_pixels(td->uncompressed_data, td->tmp, uncompressed_size);
261 rle(td->tmp, src, compressed_size, uncompressed_size);
265 ctx->dsp.predictor(td->tmp, uncompressed_size);
266 ctx->dsp.reorder_pixels(td->uncompressed_data, td->tmp, uncompressed_size);
597 uint16_t *tmp = (uint16_t *)td->tmp;
631 ret = huf_uncompress(s, td, &gb, tmp, dsize / sizeof(uint16_t));
635 ptr = tmp;
650 apply_lut(td->lut, tmp, dsize / sizeof(uint16_t));
662 in = tmp + tmp_offset * td->xsize * td->ysize + i * td->xsize * pixel_half_size;
682 const uint8_t *in = td->tmp;
698 if (uncompress(td->tmp, &dest_len, src, compressed_size) != Z_OK) {
1314 if (data_size < uncompressed_size || s->is_tile) { /* td->tmp is use for tile reorganization */
1315 av_fast_padded_malloc(&td->tmp, &td->tmp_size, uncompressed_size);
1316 if (!td->tmp)
2280 av_freep(&td->tmp);