Searched refs:jp2_box_t (Results 1 – 5 of 5) sorted by relevance
/external/opencv3/3rdparty/libjasper/ |
D | jp2_cod.c | 107 jp2_box_t *jp2_box_get(jas_stream_t *in); 108 void jp2_box_dump(jp2_box_t *box, FILE *out); 110 static int jp2_jp_getdata(jp2_box_t *box, jas_stream_t *in); 111 static int jp2_jp_putdata(jp2_box_t *box, jas_stream_t *out); 112 static int jp2_ftyp_getdata(jp2_box_t *box, jas_stream_t *in); 113 static int jp2_ftyp_putdata(jp2_box_t *box, jas_stream_t *out); 114 static int jp2_ihdr_getdata(jp2_box_t *box, jas_stream_t *in); 115 static int jp2_ihdr_putdata(jp2_box_t *box, jas_stream_t *out); 116 static void jp2_bpcc_destroy(jp2_box_t *box); 117 static int jp2_bpcc_getdata(jp2_box_t *box, jas_stream_t *in); [all …]
|
D | jp2_dec.h | 73 jp2_box_t *pclr; 74 jp2_box_t *cdef; 75 jp2_box_t *ihdr; 76 jp2_box_t *bpcc; 77 jp2_box_t *cmap; 78 jp2_box_t *colr;
|
D | jp2_cod.h | 274 } jp2_box_t; typedef 277 void (*init)(jp2_box_t *box); 278 void (*destroy)(jp2_box_t *box); 279 int (*getdata)(jp2_box_t *box, jas_stream_t *in); 280 int (*putdata)(jp2_box_t *box, jas_stream_t *out); 281 void (*dumpdata)(jp2_box_t *box, FILE *out); 299 jp2_box_t *jp2_box_create(int type); 300 void jp2_box_destroy(jp2_box_t *box); 301 jp2_box_t *jp2_box_get(jas_stream_t *in); 302 int jp2_box_put(jp2_box_t *box, jas_stream_t *out);
|
D | jp2_enc.c | 96 jp2_box_t *box; in jp2_write_header() 348 jp2_box_t *box; in jp2_write_codestream() 398 char *optstr, jp2_box_t *uuid) in jp2_encode_uuid()
|
D | jp2_dec.c | 98 jp2_box_t *box; in jp2_decode() 442 jp2_box_t *box; in jp2_validate()
|