Searched refs:decomp_size (Results 1 - 9 of 9) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | lcldec.c | 66 unsigned int decomp_size; member 146 zstream->avail_out = c->decomp_size - offset; in zlib_decomp() 203 mthread_outlen = FFMIN(mthread_outlen, c->decomp_size); in decode_frame() 204 mszh_dlen = mszh_decomp(buf + 8, mthread_inlen, c->decomp_buf, c->decomp_size); in decode_frame() 211 c->decomp_buf + mthread_outlen, c->decomp_size - mthread_outlen); in decode_frame() 218 len = c->decomp_size; in decode_frame() 220 mszh_dlen = mszh_decomp(buf, len, c->decomp_buf, c->decomp_size); in decode_frame() 221 if (c->decomp_size != mszh_dlen) { in decode_frame() 223 c->decomp_size, mszh_dlen); in decode_frame() 278 mthread_outlen = FFMIN(mthread_outlen, c->decomp_size); in decode_frame() [all...] |
H A D | cscd.c | 37 unsigned int decomp_size; member 90 int outlen = c->decomp_size, inlen = buf_size - 2; in decode_frame() 99 unsigned long dlen = c->decomp_size; in decode_frame() 100 if (uncompress(c->decomp_buf, &dlen, &buf[2], buf_size - 2) != Z_OK || (dlen != c->decomp_size && dlen != c->decomp_size - bugdelta)) { in decode_frame() 153 c->decomp_size = c->height * stride; in decode_init() 154 c->decomp_buf = av_malloc(c->decomp_size + AV_LZO_OUTPUT_PADDING); in decode_init()
|
H A D | tscc.c | 57 unsigned int decomp_size; member 90 zstream->avail_out = c->decomp_size; in decode_frame() 107 c->decomp_size - zstream->avail_out); in decode_frame() 145 c->decomp_size = (((avctx->width * c->bpp + 7) >> 3) + 3 * avctx->width + 2) * avctx->height + 2; in decode_init() 148 if (c->decomp_size) { in decode_init() 149 if (!(c->decomp_buf = av_malloc(c->decomp_size))) { in decode_init()
|
H A D | mwsc.c | 36 unsigned int decomp_size; member 110 zstream->avail_out = s->decomp_size; in decode_frame() 148 s->decomp_size = size; in decode_init() 149 if (!(s->decomp_buf = av_malloc(s->decomp_size))) in decode_init() 165 s->decomp_size = 0; in decode_close()
|
H A D | mscc.c | 37 unsigned int decomp_size; member 170 zstream->avail_out = s->decomp_size; in decode_frame() 230 s->decomp_size = 2 * avctx->height * stride; in decode_init() 231 if (!(s->decomp_buf = av_malloc(s->decomp_size))) in decode_init() 246 s->decomp_size = 0; in decode_close()
|
H A D | nuv.c | 42 unsigned int decomp_size; member 139 av_fast_malloc(&c->decomp_buf, &c->decomp_size, in codec_reinit() 238 int outlen = c->decomp_size - FFMAX(AV_INPUT_BUFFER_PADDING_SIZE, AV_LZO_OUTPUT_PADDING); in decode_frame() 245 buf_size = c->decomp_size - FFMAX(AV_INPUT_BUFFER_PADDING_SIZE, AV_LZO_OUTPUT_PADDING) - outlen; in decode_frame()
|
H A D | zmbv.c | 63 unsigned int decomp_size; member 533 if (c->decomp_size < len) { in decode_frame() 546 zstream->avail_out = c->decomp_size; in decode_frame() 618 av_log(avctx, AV_LOG_ERROR, "Internal buffer (decomp_size) larger than max_pixels or too large\n"); in decode_init() 622 c->decomp_size = (avctx->width + 255) * 4 * (avctx->height + 64); in decode_init() 625 c->decomp_buf = av_mallocz(c->decomp_size); in decode_init()
|
/third_party/python/Tools/unicode/ |
H A D | makeunicodedata.py | 175 decomp_size = 0 215 decomp_size = decomp_size + len(decomp) * 2 259 print(decomp_size, "bytes")
|
/third_party/astc-encoder/Source/ |
H A D | tinyexr.h | 5128 mz_uint total_header_size, comp_size, decomp_size, disk_index; in mz_zip_reader_read_central_dir() local 5139 decomp_size = MZ_READ_LE32(p + MZ_ZIP_CDH_DECOMPRESSED_SIZE_OFS); in mz_zip_reader_read_central_dir() 5141 (decomp_size != comp_size)) || in mz_zip_reader_read_central_dir() 5142 (decomp_size && !comp_size) || (decomp_size == 0xFFFFFFFF) || in mz_zip_reader_read_central_dir()
|
Completed in 24 milliseconds