summaryrefslogtreecommitdiff
path: root/libavcodec/vorbis.h
diff options
context:
space:
mode:
authorOded Shimon <ods15@ods15.dyndns.org>2006-10-01 11:11:30 +0000
committerOded Shimon <ods15@ods15.dyndns.org>2006-10-01 11:11:30 +0000
commit9f963af5a0dae0e24285dca8b3a2e936e42afd96 (patch)
treeac35ac7b0e679496e7de9408967c390103dd0053 /libavcodec/vorbis.h
parent429914a330b17833adefcb1fbb9d07f0e858b1d5 (diff)
make ready_floor1_list() shared for vorbis_enc.c
Originally committed as revision 6401 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vorbis.h')
-rw-r--r--libavcodec/vorbis.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/libavcodec/vorbis.h b/libavcodec/vorbis.h
index dd6ec6f99a..5cdcb652af 100644
--- a/libavcodec/vorbis.h
+++ b/libavcodec/vorbis.h
@@ -22,4 +22,13 @@
extern const float ff_vorbis_floor1_inverse_db_table[256];
extern const float * ff_vorbis_vwin[8];
+typedef struct {
+ uint_fast16_t x;
+ uint_fast16_t sort;
+ uint_fast16_t low;
+ uint_fast16_t high;
+} floor1_entry_t;
+
+void ff_vorbis_ready_floor1_list(floor1_entry_t * list, int values);
+
#endif