Searched refs:jpc_bitstream_putbits (Results 1 – 3 of 3) sorted by relevance
/external/opencv3/3rdparty/libjasper/ |
D | jpc_t2enc.c | 118 ret = jpc_bitstream_putbits(out, 2, 2); in jpc_putnumnewpasses() 120 ret = jpc_bitstream_putbits(out, 4, 0xc | (n - 3)); in jpc_putnumnewpasses() 122 ret = jpc_bitstream_putbits(out, 9, 0x1e0 | (n - 6)); in jpc_putnumnewpasses() 124 ret = jpc_bitstream_putbits(out, 16, 0xff80 | (n - 37)); in jpc_putnumnewpasses() 319 … if (jpc_bitstream_putbits(outb, cblk->numlenbits + jpc_floorlog2(passcount), datalen) == EOF) { in jpc_enc_encpkt()
|
D | jpc_bs.c | 212 int jpc_bitstream_putbits(jpc_bitstream_t *bitstream, int n, long v) in jpc_bitstream_putbits() function 423 if (jpc_bitstream_putbits(bitstream, n, v)) { in jpc_bitstream_outalign()
|
D | jpc_bs.h | 167 int jpc_bitstream_putbits(jpc_bitstream_t *bitstream, int n, long v);
|