mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/dirac_dwt: Remove unused ff_spatial_idwt2()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
cbdf4d6a61
commit
29852ffc64
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -80,9 +80,6 @@ int ff_spatial_idwt_init2(DWTContext *d, IDWTELEM *buffer, int width, int height
|
|||
int stride, enum dwt_type type, int decomposition_count,
|
||||
IDWTELEM *temp);
|
||||
|
||||
int ff_spatial_idwt2(IDWTELEM *buffer, int width, int height, int stride,
|
||||
enum dwt_type type, int decomposition_count, IDWTELEM *temp);
|
||||
|
||||
void ff_spatial_idwt_slice2(DWTContext *d, int y);
|
||||
|
||||
// shared stuff for simd optimiztions
|
||||
|
|
Loading…
Reference in New Issue