Home
last modified time | relevance | path

Searched refs:bzstream (Results 1 - 2 of 2) sorted by relevance

/third_party/skia/third_party/externals/freetype/src/bzip2/
H A Dftbzip2.c101 bz_stream bzstream; /* bzlib input stream */ member
145 bz_stream* bzstream = &zip->bzstream; in ft_bzip2_file_init() local
170 bzstream->bzalloc = (alloc_func)ft_bzip2_alloc; in ft_bzip2_file_init()
171 bzstream->bzfree = (free_func) ft_bzip2_free; in ft_bzip2_file_init()
172 bzstream->opaque = zip->memory; in ft_bzip2_file_init()
174 bzstream->avail_in = 0; in ft_bzip2_file_init()
175 bzstream->next_in = (char*)zip->buffer; in ft_bzip2_file_init()
177 if ( BZ2_bzDecompressInit( bzstream, 0, 0 ) != BZ_OK || in ft_bzip2_file_init()
178 !bzstream in ft_bzip2_file_init()
189 bz_stream* bzstream = &zip->bzstream; ft_bzip2_file_done() local
218 bz_stream* bzstream = &zip->bzstream; ft_bzip2_file_reset() local
242 bz_stream* bzstream = &zip->bzstream; ft_bzip2_file_fill_input() local
283 bz_stream* bzstream = &zip->bzstream; ft_bzip2_file_fill_output() local
[all...]
/third_party/ffmpeg/libavformat/
H A Dmatroskadec.c1747 bz_stream bzstream = { 0 }; in matroska_decode_buffer() local
1748 if (!pkt_size || BZ2_bzDecompressInit(&bzstream, 0, 0) != BZ_OK) in matroska_decode_buffer()
1750 bzstream.next_in = data; in matroska_decode_buffer()
1751 bzstream.avail_in = isize; in matroska_decode_buffer()
1756 BZ2_bzDecompressEnd(&bzstream); in matroska_decode_buffer()
1761 bzstream.avail_out = pkt_size - bzstream.total_out_lo32; in matroska_decode_buffer()
1762 bzstream.next_out = pkt_data + bzstream.total_out_lo32; in matroska_decode_buffer()
1763 result = BZ2_bzDecompress(&bzstream); in matroska_decode_buffer()
[all...]

Completed in 5 milliseconds