Browse Source

avcodec/dirac_dwt: Remove unused ff_spatial_idwt2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.1
Michael Niedermayer 12 years ago
parent
commit
29852ffc64
2 changed files with 0 additions and 17 deletions
  1. +0
    -14
      libavcodec/dirac_dwt.c
  2. +0
    -3
      libavcodec/dirac_dwt.h

+ 0
- 14
libavcodec/dirac_dwt.c View File

@@ -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;
}

+ 0
- 3
libavcodec/dirac_dwt.h View File

@@ -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…
Cancel
Save