diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-16 15:56:10 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-16 16:07:29 +0200 |
commit | 29852ffc64edc407d8d9f59651e2f4da85ebb6ca (patch) | |
tree | eda88158f325ea1ee2234de8ee4dd3fbc7643edd /libavcodec/dirac_dwt.c | |
parent | cbdf4d6a611823bdc352fa4ea4d867a01ebfa793 (diff) | |
download | ffmpeg-29852ffc64edc407d8d9f59651e2f4da85ebb6ca.tar.gz |
avcodec/dirac_dwt: Remove unused ff_spatial_idwt2()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dirac_dwt.c')
-rw-r--r-- | libavcodec/dirac_dwt.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libavcodec/dirac_dwt.c b/libavcodec/dirac_dwt.c index a2848f01ac..bbd8ec74a6 100644 --- a/libavcodec/dirac_dwt.c +++ b/libavcodec/dirac_dwt.c @@ -569,17 +569,3 @@ void ff_spatial_idwt_slice2(DWTContext *d, int y) } } -int ff_spatial_idwt2(IDWTELEM *buffer, int width, int height, int stride, - enum dwt_type type, int decomposition_count, IDWTELEM *temp) -{ - DWTContext d; - int y; - - if (ff_spatial_idwt_init2(&d, buffer, width, height, stride, type, decomposition_count, temp)) - return -1; - - for (y = 0; y < d.height; y += 4) - ff_spatial_idwt_slice2(&d, y); - - return 0; -} |