#include "avcodec.h"
Go to the source code of this file.
Data Structures | |
struct | DWTContext |
Defines | |
#define | FF_DWT_MAX_DECLVLS 32 |
max number of decomposition levels | |
Enumerations | |
enum | DWTType { FF_DWT97, FF_DWT53 } |
Functions | |
int | ff_j2k_dwt_init (DWTContext *s, uint16_t border[2][2], int decomp_levels, int type) |
initialize DWT | |
int | ff_j2k_dwt_encode (DWTContext *s, int *t) |
int | ff_j2k_dwt_decode (DWTContext *s, int *t) |
void | ff_j2k_dwt_destroy (DWTContext *s) |
Definition in file j2k_dwt.h.
#define FF_DWT_MAX_DECLVLS 32 |
max number of decomposition levels
Definition at line 33 of file j2k_dwt.h.
Referenced by ff_j2k_dwt_init().
int ff_j2k_dwt_decode | ( | DWTContext * | s, | |
int * | t | |||
) |
void ff_j2k_dwt_destroy | ( | DWTContext * | s | ) |
int ff_j2k_dwt_encode | ( | DWTContext * | s, | |
int * | t | |||
) |
int ff_j2k_dwt_init | ( | DWTContext * | s, | |
uint16_t | border[2][2], | |||
int | decomp_levels, | |||
int | type | |||
) |
initialize DWT
s | DWT context | |
border | coordinates of transformed region {{x0, x1}, {y0, y1}} | |
decomp_levels | number of decomposition levels | |
type | 0 for DWT 9/7; 1 for DWT 5/3 |
Definition at line 319 of file j2k_dwt.c.
Referenced by ff_j2k_init_component().