# HG changeset patch # User michael # Date 1196930329 0 # Node ID 382aa8b243c5c9db80bf0fdaecbb4a0ae8b1a58b # Parent 919193c63fb8b4fd2d6ae40d24ee6b4e71715ba6 prevent warnings about functions being possibly unused diff -r 919193c63fb8 -r 382aa8b243c5 snow.c --- a/snow.c Thu Dec 06 02:02:41 2007 +0000 +++ b/snow.c Thu Dec 06 08:38:49 2007 +0000 @@ -1160,7 +1160,7 @@ 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; spatial_compose53i_init(&cs, buffer, height, stride); while(cs.y <= height) @@ -1310,7 +1310,7 @@ 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; spatial_compose97i_init(&cs, buffer, height, stride); while(cs.y <= height)