Commit 52b90c5a authored by diego's avatar diego

Remove unused functions, fixes the warnings:

snow.c:1163: warning: 'spatial_compose53i' defined but not used
snow.c:1313: warning: 'spatial_compose97i' defined but not used


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11048 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent cdcd2664
...@@ -1160,13 +1160,6 @@ STOP_TIMER("horizontal_compose53i")} ...@@ -1160,13 +1160,6 @@ STOP_TIMER("horizontal_compose53i")}
cs->y += 2; cs->y += 2;
} }
static void spatial_compose53i(IDWTELEM *buffer, int width, int height, int stride){
dwt_compose_t cs;
spatial_compose53i_init(&cs, buffer, height, stride);
while(cs.y <= height)
spatial_compose53i_dy(&cs, buffer, width, height, stride);
}
void ff_snow_horizontal_compose97i(IDWTELEM *b, int width){ void ff_snow_horizontal_compose97i(IDWTELEM *b, int width){
IDWTELEM temp[width]; IDWTELEM temp[width];
...@@ -1310,13 +1303,6 @@ STOP_TIMER("horizontal_compose97i")}} ...@@ -1310,13 +1303,6 @@ STOP_TIMER("horizontal_compose97i")}}
cs->y += 2; cs->y += 2;
} }
static void spatial_compose97i(IDWTELEM *buffer, int width, int height, int stride){
dwt_compose_t cs;
spatial_compose97i_init(&cs, buffer, height, stride);
while(cs.y <= height)
spatial_compose97i_dy(&cs, buffer, width, height, stride);
}
static void ff_spatial_idwt_buffered_init(dwt_compose_t *cs, slice_buffer * sb, int width, int height, int stride_line, int type, int decomposition_count){ static void ff_spatial_idwt_buffered_init(dwt_compose_t *cs, slice_buffer * sb, int width, int height, int stride_line, int type, int decomposition_count){
int level; int level;
for(level=decomposition_count-1; level>=0; level--){ for(level=decomposition_count-1; level>=0; level--){
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment