Mercurial > libavcodec.hg
changeset 5989:382aa8b243c5 libavcodec
prevent warnings about functions being possibly unused
author | michael |
---|---|
date | Thu, 06 Dec 2007 08:38:49 +0000 |
parents | 919193c63fb8 |
children | 266b2501216a |
files | snow.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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)