comparison vorbis.h @ 3801:203cd258fc20 libavcodec

make ready_floor1_list() shared for vorbis_enc.c
author ods15
date Sun, 01 Oct 2006 11:11:30 +0000
parents 6e7b9a44800c
children 094fe185d054
comparison
equal deleted inserted replaced
3800:9b75ab171fa9 3801:203cd258fc20
20 #define VORBIS_H 20 #define VORBIS_H
21 21
22 extern const float ff_vorbis_floor1_inverse_db_table[256]; 22 extern const float ff_vorbis_floor1_inverse_db_table[256];
23 extern const float * ff_vorbis_vwin[8]; 23 extern const float * ff_vorbis_vwin[8];
24 24
25 typedef struct {
26 uint_fast16_t x;
27 uint_fast16_t sort;
28 uint_fast16_t low;
29 uint_fast16_t high;
30 } floor1_entry_t;
31
32 void ff_vorbis_ready_floor1_list(floor1_entry_t * list, int values);
33
25 #endif 34 #endif