summaryrefslogtreecommitdiff
path: root/libavcodec/jpeg2000dwt.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-28 09:35:56 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-05-28 09:42:19 +0200
commit197e219c927c81b38460482970faddfdb875817d (patch)
tree144daff1d7f0153e333dd5f3b4def2adeeb837e0 /libavcodec/jpeg2000dwt.h
parentcf05fe8a7e588c005b93948e2e418a7b4744fe79 (diff)
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.h2
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);