diff options
author | Oded Shimon <ods15@ods15.dyndns.org> | 2006-10-01 13:53:08 +0000 |
---|---|---|
committer | Oded Shimon <ods15@ods15.dyndns.org> | 2006-10-01 13:53:08 +0000 |
commit | e8f42cc0f522a3a8448e17bfcf08afc8fbb0f891 (patch) | |
tree | 7602db1c4cec63c908b7a9ac00019d7ba966ee3c | |
parent | ded515b24157b29b7ade15020988438870e29483 (diff) | |
download | ffmpeg-e8f42cc0f522a3a8448e17bfcf08afc8fbb0f891.tar.gz |
prevent warning in vorbis_data.c
Originally committed as revision 6404 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/vorbis.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vorbis.h b/libavcodec/vorbis.h index a967fb79fb..b542ca2ff2 100644 --- a/libavcodec/vorbis.h +++ b/libavcodec/vorbis.h @@ -35,7 +35,7 @@ void ff_vorbis_ready_floor1_list(floor1_entry_t * list, int values); unsigned int ff_vorbis_nth_root(unsigned int x, unsigned int n); // x^(1/n) int ff_vorbis_len2vlc(uint8_t *bits, uint32_t *codes, uint_fast32_t num); -static void render_line(int x0, int y0, int x1, int y1, float * buf, int n) { +static void attribute_unused render_line(int x0, int y0, int x1, int y1, float * buf, int n) { int dy = y1 - y0; int adx = x1 - x0; int ady = ABS(dy); |