forked from FFmpeg/FFmpeg
dwt: Drop unused functions spatial_compose{53|97}i()
This commit is contained in:
parent
83655442fa
commit
4e5b7f31f7
1 changed files with 0 additions and 18 deletions
|
@ -465,15 +465,6 @@ static void spatial_compose53i_dy(DWTCompose *cs, IDWTELEM *buffer,
|
||||||
cs->y += 2;
|
cs->y += 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void av_unused spatial_compose53i(IDWTELEM *buffer, IDWTELEM *temp,
|
|
||||||
int width, int height, int stride)
|
|
||||||
{
|
|
||||||
DWTCompose cs;
|
|
||||||
spatial_compose53i_init(&cs, buffer, height, stride);
|
|
||||||
while (cs.y <= height)
|
|
||||||
spatial_compose53i_dy(&cs, buffer, temp, width, height, stride);
|
|
||||||
}
|
|
||||||
|
|
||||||
void ff_snow_horizontal_compose97i(IDWTELEM *b, IDWTELEM *temp, int width)
|
void ff_snow_horizontal_compose97i(IDWTELEM *b, IDWTELEM *temp, int width)
|
||||||
{
|
{
|
||||||
const int w2 = (width + 1) >> 1;
|
const int w2 = (width + 1) >> 1;
|
||||||
|
@ -648,15 +639,6 @@ static void spatial_compose97i_dy(DWTCompose *cs, IDWTELEM *buffer,
|
||||||
cs->y += 2;
|
cs->y += 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void av_unused spatial_compose97i(IDWTELEM *buffer, IDWTELEM *temp,
|
|
||||||
int width, int height, int stride)
|
|
||||||
{
|
|
||||||
DWTCompose cs;
|
|
||||||
spatial_compose97i_init(&cs, buffer, height, stride);
|
|
||||||
while (cs.y <= height)
|
|
||||||
spatial_compose97i_dy(&cs, buffer, temp, width, height, stride);
|
|
||||||
}
|
|
||||||
|
|
||||||
void ff_spatial_idwt_buffered_init(DWTCompose *cs, slice_buffer *sb, int width,
|
void ff_spatial_idwt_buffered_init(DWTCompose *cs, slice_buffer *sb, int width,
|
||||||
int height, int stride_line, int type,
|
int height, int stride_line, int type,
|
||||||
int decomposition_count)
|
int decomposition_count)
|
||||||
|
|
Loading…
Add table
Reference in a new issue