Libav
|
JPEG 2000 image encoder and decoder common functions. More...
Go to the source code of this file.
Macros | |
#define | SHL(a, n) ((n) >= 0 ? (a) << (n) : (a) >> -(n)) |
Functions | |
static int32_t | tag_tree_size (uint16_t w, uint16_t h) |
static Jpeg2000TgtNode * | ff_jpeg2000_tag_tree_init (int w, int h) |
static int | getsigctxno (int flag, int bandno) |
static int | getsgnctxno (int flag, uint8_t *xorbit) |
void | ff_jpeg2000_init_tier1_luts (void) |
void | ff_jpeg2000_set_significance (Jpeg2000T1Context *t1, int x, int y, int negative) |
int | ff_jpeg2000_init_component (Jpeg2000Component *comp, Jpeg2000CodingStyle *codsty, Jpeg2000QuantStyle *qntsty, int cbps, int dx, int dy, AVCodecContext *avctx) |
void | ff_jpeg2000_cleanup (Jpeg2000Component *comp, Jpeg2000CodingStyle *codsty) |
Variables | |
uint8_t | ff_jpeg2000_sigctxno_lut [256][4] |
uint8_t | ff_jpeg2000_sgnctxno_lut [16][16] |
uint8_t | ff_jpeg2000_xorbit_lut [16][16] |
static const int | contribtab [3][3] = { { 0, -1, 1 }, { -1, -1, 0 }, { 1, 0, 1 } } |
static const int | ctxlbltab [3][3] = { { 13, 12, 11 }, { 10, 9, 10 }, { 11, 12, 13 } } |
static const int | xorbittab [3][3] = { { 1, 1, 1 }, { 1, 0, 0 }, { 0, 0, 0 } } |
static const uint8_t | lut_gain [2][4] = { { 0, 0, 0, 0 }, { 0, 1, 1, 2 } } |
JPEG 2000 image encoder and decoder common functions.
Definition in file jpeg2000.c.
#define SHL | ( | a, | |
n | |||
) | ((n) >= 0 ? (a) << (n) : (a) >> -(n)) |
Definition at line 33 of file jpeg2000.c.
Referenced by ff_jpeg2000_init_component().
|
static |
Definition at line 38 of file jpeg2000.c.
Referenced by ff_jpeg2000_tag_tree_init().
|
static |
Definition at line 51 of file jpeg2000.c.
Referenced by ff_jpeg2000_init_component().
|
static |
Definition at line 86 of file jpeg2000.c.
Referenced by ff_jpeg2000_init_tier1_luts().
|
static |
Definition at line 147 of file jpeg2000.c.
Referenced by ff_jpeg2000_init_tier1_luts().
Definition at line 160 of file jpeg2000.c.
Referenced by jpeg2000_init_static_data().
void ff_jpeg2000_set_significance | ( | Jpeg2000T1Context * | t1, |
int | x, | ||
int | y, | ||
int | negative | ||
) |
Definition at line 172 of file jpeg2000.c.
Referenced by decode_clnpass(), and decode_sigpass().
int ff_jpeg2000_init_component | ( | Jpeg2000Component * | comp, |
Jpeg2000CodingStyle * | codsty, | ||
Jpeg2000QuantStyle * | qntsty, | ||
int | cbps, | ||
int | dx, | ||
int | dy, | ||
AVCodecContext * | avctx | ||
) |
Definition at line 197 of file jpeg2000.c.
Referenced by init_tile().
void ff_jpeg2000_cleanup | ( | Jpeg2000Component * | comp, |
Jpeg2000CodingStyle * | codsty | ||
) |
Definition at line 484 of file jpeg2000.c.
Referenced by jpeg2000_dec_cleanup().
uint8_t ff_jpeg2000_sigctxno_lut[256][4] |
Definition at line 84 of file jpeg2000.c.
Referenced by ff_jpeg2000_getsigctxno(), and ff_jpeg2000_init_tier1_luts().
uint8_t ff_jpeg2000_sgnctxno_lut[16][16] |
Definition at line 141 of file jpeg2000.c.
Referenced by ff_jpeg2000_getsgnctxno(), and ff_jpeg2000_init_tier1_luts().
uint8_t ff_jpeg2000_xorbit_lut[16][16] |
Definition at line 141 of file jpeg2000.c.
Referenced by ff_jpeg2000_getsgnctxno(), and ff_jpeg2000_init_tier1_luts().
|
static |
Definition at line 143 of file jpeg2000.c.
Referenced by getsgnctxno().
|
static |
Definition at line 144 of file jpeg2000.c.
Referenced by getsgnctxno().
|
static |
Definition at line 145 of file jpeg2000.c.
Referenced by getsgnctxno().
|
static |
Definition at line 195 of file jpeg2000.c.
Referenced by ff_jpeg2000_init_component().