Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-09-24 19:07:22 +0400
committerDiego Biurrun <diego@biurrun.de>2012-09-27 14:08:09 +0400
commit4e5b7f31f7aa7a40ef6d255db2cd65ebab7b74db (patch)
tree06662550566ab4033507e74382613dac32d77eff /libavcodec/dwt.c
parent83655442fa6dbf7578d108ce479f98a14ebb3e3c (diff)
dwt: Drop unused functions spatial_compose{53|97}i()
Diffstat (limited to 'libavcodec/dwt.c')
-rw-r--r--libavcodec/dwt.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/libavcodec/dwt.c b/libavcodec/dwt.c
index be530396a5..93cf2c6957 100644
--- a/libavcodec/dwt.c
+++ b/libavcodec/dwt.c
@@ -465,15 +465,6 @@ static void spatial_compose53i_dy(DWTCompose *cs, IDWTELEM *buffer,
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)
{
const int w2 = (width + 1) >> 1;
@@ -648,15 +639,6 @@ static void spatial_compose97i_dy(DWTCompose *cs, IDWTELEM *buffer,
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,
int height, int stride_line, int type,
int decomposition_count)