diff options
author | James Almer <jamrial@gmail.com> | 2014-10-01 22:33:02 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2014-10-02 03:21:45 -0300 |
commit | c9f2ec8a3464718641742a105179f828ccbfb392 (patch) | |
tree | 42aece45f68e9bfdd2dcecfe30b14d852ef91a14 /libavcodec/jpeg2000dwt.h | |
parent | c29d999f71f65560a61b638a983745d26cde1fc4 (diff) | |
download | ffmpeg-c9f2ec8a3464718641742a105179f828ccbfb392.tar.gz |
jpeg2000: split off inverse MCT decoding as Jpeg2000DSP
This makes the addition of arch optimized functions easier.
Reviewed-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/jpeg2000dwt.h')
-rw-r--r-- | libavcodec/jpeg2000dwt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/jpeg2000dwt.h b/libavcodec/jpeg2000dwt.h index b5be8123a0..b6d296d8a8 100644 --- a/libavcodec/jpeg2000dwt.h +++ b/libavcodec/jpeg2000dwt.h @@ -34,7 +34,8 @@ enum DWTType { FF_DWT97, FF_DWT53, - FF_DWT97_INT + FF_DWT97_INT, + FF_DWT_NB }; typedef struct DWTContext { |