Searched refs:jpc_bitstream_t (Results 1 – 9 of 9) sorted by relevance
/external/opencv3/3rdparty/libjasper/ |
D | jpc_bs.h | 129 } jpc_bitstream_t; typedef 136 jpc_bitstream_t *jpc_bitstream_sopen(jas_stream_t *stream, char *mode); 139 int jpc_bitstream_close(jpc_bitstream_t *bitstream); 164 long jpc_bitstream_getbits(jpc_bitstream_t *bitstream, int n); 167 int jpc_bitstream_putbits(jpc_bitstream_t *bitstream, int n, long v); 175 int jpc_bitstream_align(jpc_bitstream_t *bitstream); 180 int jpc_bitstream_inalign(jpc_bitstream_t *bitstream, int fillmask, 185 int jpc_bitstream_outalign(jpc_bitstream_t *bitstream, int filldata); 188 int jpc_bitstream_needalign(jpc_bitstream_t *bitstream); 191 int jpc_bitstream_pending(jpc_bitstream_t *bitstream); [all …]
|
D | jpc_bs.c | 88 static jpc_bitstream_t *jpc_bitstream_alloc(void); 95 jpc_bitstream_t *jpc_bitstream_sopen(jas_stream_t *stream, char *mode) in jpc_bitstream_sopen() 97 jpc_bitstream_t *bitstream; in jpc_bitstream_sopen() 126 int jpc_bitstream_close(jpc_bitstream_t *bitstream) in jpc_bitstream_close() 149 static jpc_bitstream_t *jpc_bitstream_alloc() in jpc_bitstream_alloc() 151 jpc_bitstream_t *bitstream; in jpc_bitstream_alloc() 154 if (!(bitstream = jas_malloc(sizeof(jpc_bitstream_t)))) { in jpc_bitstream_alloc() 171 int jpc_bitstream_getbit_func(jpc_bitstream_t *bitstream) in jpc_bitstream_getbit_func() 181 int jpc_bitstream_putbit_func(jpc_bitstream_t *bitstream, int b) in jpc_bitstream_putbit_func() 191 long jpc_bitstream_getbits(jpc_bitstream_t *bitstream, int n) in jpc_bitstream_getbits() [all …]
|
D | jpc_tagtree.h | 158 int threshold, jpc_bitstream_t *in); 162 int threshold, jpc_bitstream_t *out);
|
D | jpc_t2dec.c | 98 static int jpc_getcommacode(jpc_bitstream_t *in); 99 static int jpc_getnumnewpasses(jpc_bitstream_t *in); 107 static int jpc_getcommacode(jpc_bitstream_t *in) in jpc_getcommacode() 129 static int jpc_getnumnewpasses(jpc_bitstream_t *in) in jpc_getnumnewpasses() 159 jpc_bitstream_t *inb; in jpc_dec_decodepkt()
|
D | jpc_tagtree.c | 268 int threshold, jpc_bitstream_t *out) in jpc_tagtree_encode() 328 int threshold, jpc_bitstream_t *in) in jpc_tagtree_decode()
|
D | jpc_t1enc.c | 97 static int jpc_encrawsigpass(jpc_bitstream_t *out, int bitpos, int, 100 static int jpc_encrawrefpass(jpc_bitstream_t *out, int bitpos, int, 203 jpc_bitstream_t *bout; in jpc_enc_enccblk() 528 static int jpc_encrawsigpass(jpc_bitstream_t *out, int bitpos, int vcausalflag, jas_matrix_t *flags, in jpc_encrawsigpass() 723 static int jpc_encrawrefpass(jpc_bitstream_t *out, int bitpos, int vcausalflag, jas_matrix_t *flags, in jpc_encrawrefpass()
|
D | jpc_t1dec.c | 96 static int dec_rawsigpass(jpc_dec_t *dec, jpc_bitstream_t *in, int bitpos, 100 static int dec_rawrefpass(jpc_dec_t *dec, jpc_bitstream_t *in, int bitpos, 467 static int dec_rawsigpass(jpc_dec_t *dec, jpc_bitstream_t *in, int bitpos, int vcausalflag, in dec_rawsigpass() 667 static int dec_rawrefpass(jpc_dec_t *dec, jpc_bitstream_t *in, int bitpos, int vcausalflag, in dec_rawrefpass()
|
D | jpc_t2enc.c | 94 static int jpc_putcommacode(jpc_bitstream_t *out, int n) in jpc_putcommacode() 109 static int jpc_putnumnewpasses(jpc_bitstream_t *out, int n) in jpc_putnumnewpasses() 169 jpc_bitstream_t *outb; in jpc_enc_encpkt()
|
D | jpc_dec.h | 301 jpc_bitstream_t *nulldec;
|