Libav
Data Structures | Macros | Enumerations | Functions
jpeg2000dwt.h File Reference

Discrete wavelet transform. More...

#include <stdint.h>

Go to the source code of this file.

Data Structures

struct  DWTContext
 

Macros

#define FF_DWT_MAX_DECLVLS   32
 max number of decomposition levels More...
 

Enumerations

enum  DWTType { FF_DWT97, FF_DWT53, FF_DWT97_INT }
 

Functions

int ff_jpeg2000_dwt_init (DWTContext *s, uint16_t border[2][2], int decomp_levels, int type)
 Initialize DWT. More...
 
int ff_dwt_decode (DWTContext *s, void *t)
 
void ff_dwt_destroy (DWTContext *s)
 

Detailed Description

Discrete wavelet transform.

Definition in file jpeg2000dwt.h.

Macro Definition Documentation

§ FF_DWT_MAX_DECLVLS

#define FF_DWT_MAX_DECLVLS   32

max number of decomposition levels

Definition at line 32 of file jpeg2000dwt.h.

Enumeration Type Documentation

§ DWTType

enum DWTType
Enumerator
FF_DWT97 
FF_DWT53 
FF_DWT97_INT 

Definition at line 34 of file jpeg2000dwt.h.

Function Documentation

§ ff_jpeg2000_dwt_init()

int ff_jpeg2000_dwt_init ( DWTContext s,
uint16_t  border[2][2],
int  decomp_levels,
int  type 
)

Initialize DWT.

Parameters
sDWT context
bordercoordinates of transformed region {{x0, x1}, {y0, y1}}
decomp_levelsnumber of decomposition levels
type0 for DWT 9/7; 1 for DWT 5/3

Definition at line 291 of file jpeg2000dwt.c.

Referenced by ff_jpeg2000_init_component().

§ ff_dwt_decode()

int ff_dwt_decode ( DWTContext s,
void t 
)

Definition at line 335 of file jpeg2000dwt.c.

Referenced by jpeg2000_decode_tile().

§ ff_dwt_destroy()

void ff_dwt_destroy ( DWTContext s)

Definition at line 353 of file jpeg2000dwt.c.

Referenced by ff_jpeg2000_cleanup().