Mercurial > libavcodec.hg
diff vorbis.h @ 3088:03582724f3de libavcodec
Correct the relation between floors of type 0 and block sizes.
| author | al |
|---|---|
| date | Sun, 05 Feb 2006 10:16:20 +0000 |
| parents | 95bee8ba8870 |
| children | 545a15c19c91 |
line wrap: on
line diff
--- a/vorbis.h Sat Feb 04 22:18:45 2006 +0000 +++ b/vorbis.h Sun Feb 05 10:16:20 2006 +0000 @@ -29,8 +29,8 @@ uint_fast8_t order; uint_fast16_t rate; uint_fast16_t bark_map_size; - int_fast32_t * map; - uint_fast32_t map_size; + int_fast32_t * map[2]; + uint_fast32_t map_size[2]; uint_fast8_t amplitude_bits; uint_fast8_t amplitude_offset; uint_fast8_t num_books; @@ -111,6 +111,7 @@ vorbis_mapping *mappings; uint_fast8_t mode_count; vorbis_mode *modes; + uint_fast8_t mode_number; // mode number for the current packet float *channel_residues; float *channel_floors; float *saved;
