summaryrefslogtreecommitdiff
path: root/apps/codecs/libtremor/backends.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libtremor/backends.h')
-rw-r--r--apps/codecs/libtremor/backends.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/libtremor/backends.h b/apps/codecs/libtremor/backends.h
index 9b63080a6b..e27f1f2b80 100644
--- a/apps/codecs/libtremor/backends.h
+++ b/apps/codecs/libtremor/backends.h
@@ -110,7 +110,7 @@ typedef struct{
110 110
111typedef struct vorbis_info_mapping0{ 111typedef struct vorbis_info_mapping0{
112 int submaps; /* <= 16 */ 112 int submaps; /* <= 16 */
113 int chmuxlist[256]; /* up to 256 channels in a Vorbis stream */ 113 int chmuxlist[CHANNELS]; /* up to 256 channels in a Vorbis stream */
114 114
115 int floorsubmap[16]; /* [mux] submap to floors */ 115 int floorsubmap[16]; /* [mux] submap to floors */
116 int residuesubmap[16]; /* [mux] submap to residue */ 116 int residuesubmap[16]; /* [mux] submap to residue */
@@ -121,8 +121,8 @@ typedef struct vorbis_info_mapping0{
121#endif 121#endif
122 122
123 int coupling_steps; 123 int coupling_steps;
124 int coupling_mag[256]; 124 unsigned char coupling_mag[256];
125 int coupling_ang[256]; 125 unsigned char coupling_ang[256];
126} vorbis_info_mapping0; 126} vorbis_info_mapping0;
127 127
128#endif 128#endif