Home
last modified time | relevance | path

Searched refs:zret (Results 1 - 10 of 10) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dlclenc.c73 int zret; // Zlib return code in encode_frame() local
84 zret = deflateReset(zstream); in encode_frame()
85 if (zret != Z_OK) { in encode_frame()
86 av_log(avctx, AV_LOG_ERROR, "Deflate reset error: %d\n", zret); in encode_frame()
95 zret = deflate(zstream, Z_NO_FLUSH); in encode_frame()
96 if (zret != Z_OK) { in encode_frame()
97 av_log(avctx, AV_LOG_ERROR, "Deflate error: %d\n", zret); in encode_frame()
101 zret = deflate(zstream, Z_FINISH); in encode_frame()
102 if (zret != Z_STREAM_END) { in encode_frame()
103 av_log(avctx, AV_LOG_ERROR, "Deflate error: %d\n", zret); in encode_frame()
[all...]
H A Dzlib_wrapper.c44 int zret; in ff_inflate_init() local
53 zret = inflateInit(zstream); in ff_inflate_init()
54 if (zret == Z_OK) { in ff_inflate_init()
58 zret, zstream->msg ? zstream->msg : ""); in ff_inflate_init()
77 int zret; in ff_deflate_init() local
84 zret = deflateInit(zstream, level); in ff_deflate_init()
85 if (zret == Z_OK) { in ff_deflate_init()
89 zret, zstream->msg ? zstream->msg : ""); in ff_deflate_init()
H A Dzerocodec.c40 int i, j, zret, ret; in zerocodec_decode_frame() local
57 zret = inflateReset(zstream); in zerocodec_decode_frame()
58 if (zret != Z_OK) { in zerocodec_decode_frame()
59 av_log(avctx, AV_LOG_ERROR, "Could not reset inflate: %d.\n", zret); in zerocodec_decode_frame()
80 zret = inflate(zstream, Z_SYNC_FLUSH); in zerocodec_decode_frame()
81 if (zret != Z_OK && zret != Z_STREAM_END) { in zerocodec_decode_frame()
83 "Inflate failed with return code: %d.\n", zret); in zerocodec_decode_frame()
H A Drasc.c181 int zret; in decode_zlib() local
183 zret = inflateReset(zstream); in decode_zlib()
184 if (zret != Z_OK) { in decode_zlib()
185 av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret); in decode_zlib()
199 zret = inflate(zstream, Z_FINISH); in decode_zlib()
200 if (zret != Z_STREAM_END) { in decode_zlib()
202 "Inflate failed with return code: %d.\n", zret); in decode_zlib()
483 int zret, ret; in decode_kfrm() local
495 zret = inflateReset(zstream); in decode_kfrm()
496 if (zret ! in decode_kfrm()
[all...]
H A Dwcmv.c49 int skip, blocks, zret, ret, intra = 0, flags = 0, bpp = s->bpp; in decode_frame() local
87 zret = inflate(zstream, Z_FINISH); in decode_frame()
88 if (zret != Z_STREAM_END) { in decode_frame()
90 "Inflate failed with return code: %d.\n", zret); in decode_frame()
189 zret = inflate(zstream, Z_SYNC_FLUSH); in decode_frame()
190 if (zret != Z_OK && zret != Z_STREAM_END) { in decode_frame()
192 "Inflate failed with return code: %d.\n", zret); in decode_frame()
H A Dflashsv.c139 int zret; // Zlib return code in flashsv2_prime() local
152 zret = inflate(zstream, Z_SYNC_FLUSH); in flashsv2_prime()
153 if (zret != Z_OK && zret != Z_STREAM_END) in flashsv2_prime()
157 if ((zret = inflateReset(zstream)) != Z_OK) { in flashsv2_prime()
158 av_log(s->avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret); in flashsv2_prime()
170 zret = inflate(zstream, Z_SYNC_FLUSH); in flashsv2_prime()
171 if (zret != Z_OK) in flashsv2_prime()
186 zret = inflate(zstream, Z_SYNC_FLUSH); in flashsv2_prime()
187 if (zret ! in flashsv2_prime()
[all...]
H A Dlcldec.c138 int zret = inflateReset(zstream); in zlib_decomp() local
139 if (zret != Z_OK) { in zlib_decomp()
140 av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret); in zlib_decomp()
147 zret = inflate(zstream, Z_FINISH); in zlib_decomp()
148 if (zret != Z_OK && zret != Z_STREAM_END) { in zlib_decomp()
149 av_log(avctx, AV_LOG_ERROR, "Inflate error: %d\n", zret); in zlib_decomp()
H A Dzmbv.c419 int zret = Z_OK; // Zlib return code in decode_frame() local
497 zret = inflateReset(&c->zstream.zstream); in decode_frame()
498 if (zret != Z_OK) { in decode_frame()
499 av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret); in decode_frame()
547 zret = inflate(zstream, Z_SYNC_FLUSH); in decode_frame()
548 if (zret != Z_OK && zret != Z_STREAM_END) { in decode_frame()
549 av_log(avctx, AV_LOG_ERROR, "inflate error %d\n", zret); in decode_frame()
H A Dtiff.c487 int zret; in tiff_uncompress() local
493 zret = inflateInit(&zstream); in tiff_uncompress()
494 if (zret != Z_OK) { in tiff_uncompress()
495 av_log(NULL, AV_LOG_ERROR, "Inflate init error: %d\n", zret); in tiff_uncompress()
496 return zret; in tiff_uncompress()
498 zret = inflate(&zstream, Z_SYNC_FLUSH); in tiff_uncompress()
501 return zret == Z_STREAM_END ? Z_OK : zret; in tiff_uncompress()
/third_party/FreeBSD/contrib/gdtoa/
H A Dgethex.c48 int big, esign, havedig, irv, j, k, n, n0, nbits, up, zret; local
79 zret = 0;
84 zret = 1;
101 zret = 0;
153 if (zret)

Completed in 12 milliseconds