Mercurial > libavcodec.hg
diff vorbis.h @ 3802:094fe185d054 libavcodec
make some more functions global so they can be shared with vorbis_enc.c
| author | ods15 |
|---|---|
| date | Sun, 01 Oct 2006 11:59:33 +0000 |
| parents | 203cd258fc20 |
| children | 7ffa21b125a6 |
line wrap: on
line diff
--- a/vorbis.h Sun Oct 01 11:11:30 2006 +0000 +++ b/vorbis.h Sun Oct 01 11:59:33 2006 +0000 @@ -30,5 +30,36 @@ } floor1_entry_t; 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) { + int dy = y1 - y0; + int adx = x1 - x0; + int ady = ABS(dy); + int base = dy / adx; + int x = x0; + int y = y0; + int err = 0; + int sy; + if (dy < 0) sy = base - 1; + else sy = base + 1; + ady = ady - ABS(base) * adx; + if (x >= n) return; + buf[x] = ff_vorbis_floor1_inverse_db_table[y]; + for (x = x0 + 1; x < x1; x++) { + if (x >= n) return; + err += ady; + if (err >= adx) { + err -= adx; + y += sy; + } else { + y += base; + } + buf[x] = ff_vorbis_floor1_inverse_db_table[y]; + } +} + +#define ilog(i) av_log2(2*(i)) #endif
