diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-12-06 08:38:49 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-12-06 08:38:49 +0000 |
commit | 1918057c8a3bc37c27e476d16736fe8bc76afd34 (patch) | |
tree | c6c4b03723b4620edf5ac2061dcccbed4f48513b /libavcodec/snow.c | |
parent | 9a3bb2b89c21bd222cd382b0efd8ac750e73a6f7 (diff) | |
download | ffmpeg-1918057c8a3bc37c27e476d16736fe8bc76afd34.tar.gz |
prevent warnings about functions being possibly unused
Originally committed as revision 11174 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/snow.c')
-rw-r--r-- | libavcodec/snow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/snow.c b/libavcodec/snow.c index dbb4688810..9f36553512 100644 --- a/libavcodec/snow.c +++ b/libavcodec/snow.c @@ -1160,7 +1160,7 @@ STOP_TIMER("horizontal_compose53i")} 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 @@ STOP_TIMER("horizontal_compose97i")}} 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) |