Browse Source

prevent warning in vorbis_data.c

Originally committed as revision 6404 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Oded Shimon 19 years ago
parent
commit
e8f42cc0f5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/vorbis.h

+ 1
- 1
libavcodec/vorbis.h View File

@@ -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);


Loading…
Cancel
Save