Home | History | Annotate | Download | only in libopenjpeg20

Lines Matching refs:raw

39 @file raw.h
40 @brief Implementation of operations for raw encoding (RAW)
42 The functions in RAW.C have for goal to realize the operation of raw encoding linked
46 /** @defgroup RAW RAW - Implementation of operations for raw encoding */
50 RAW encoding operations
73 Create a new RAW handle
74 @return Returns a new RAW handle if successful, returns NULL otherwise
78 Destroy a previously created RAW handle
79 @param raw RAW handle to destroy
81 void opj_raw_destroy(opj_raw_t *raw);
84 @param raw RAW handle to destroy
87 OPJ_UINT32 opj_raw_numbytes(opj_raw_t *raw);
90 @param raw RAW handle
94 void opj_raw_init_dec(opj_raw_t *raw, OPJ_BYTE *bp, OPJ_UINT32 len);
96 Decode a symbol using raw-decoder. Cfr p.506 TAUBMAN
97 @param raw RAW handle
100 OPJ_UINT32 opj_raw_decode(opj_raw_t *raw);