diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-28 09:35:56 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-28 09:42:19 +0200 |
commit | 197e219c927c81b38460482970faddfdb875817d (patch) | |
tree | 144daff1d7f0153e333dd5f3b4def2adeeb837e0 /libavcodec/jpeg2000dwt.h | |
parent | cf05fe8a7e588c005b93948e2e418a7b4744fe79 (diff) | |
download | ffmpeg-197e219c927c81b38460482970faddfdb875817d.tar.gz |
jpeg2000dwt: add float based 9/7 dwt
Untested as theres no code yet using it in the encoder.
Code based on mixed float/int dwt
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/jpeg2000dwt.h')
-rw-r--r-- | libavcodec/jpeg2000dwt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/jpeg2000dwt.h b/libavcodec/jpeg2000dwt.h index acea77a959..b5be8123a0 100644 --- a/libavcodec/jpeg2000dwt.h +++ b/libavcodec/jpeg2000dwt.h @@ -57,7 +57,7 @@ typedef struct DWTContext { int ff_jpeg2000_dwt_init(DWTContext *s, uint16_t border[2][2], int decomp_levels, int type); -int ff_dwt_encode(DWTContext *s, int *t); +int ff_dwt_encode(DWTContext *s, void *t); int ff_dwt_decode(DWTContext *s, void *t); void ff_dwt_destroy(DWTContext *s); |