Commit e553314a authored by michael's avatar michael

prevent warnings about functions being possibly unused


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11174 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 78c50f0a
...@@ -1160,7 +1160,7 @@ STOP_TIMER("horizontal_compose53i")} ...@@ -1160,7 +1160,7 @@ STOP_TIMER("horizontal_compose53i")}
cs->y += 2; cs->y += 2;
} }
static void spatial_compose53i(IDWTELEM *buffer, int width, int height, int stride){ static void av_unused spatial_compose53i(IDWTELEM *buffer, int width, int height, int stride){
dwt_compose_t cs; dwt_compose_t cs;
spatial_compose53i_init(&cs, buffer, height, stride); spatial_compose53i_init(&cs, buffer, height, stride);
while(cs.y <= height) while(cs.y <= height)
...@@ -1310,7 +1310,7 @@ STOP_TIMER("horizontal_compose97i")}} ...@@ -1310,7 +1310,7 @@ STOP_TIMER("horizontal_compose97i")}}
cs->y += 2; cs->y += 2;
} }
static void spatial_compose97i(IDWTELEM *buffer, int width, int height, int stride){ static void av_unused spatial_compose97i(IDWTELEM *buffer, int width, int height, int stride){
dwt_compose_t cs; dwt_compose_t cs;
spatial_compose97i_init(&cs, buffer, height, stride); spatial_compose97i_init(&cs, buffer, height, stride);
while(cs.y <= height) while(cs.y <= height)
......
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