Adding the auto-generated static modes for float and fixed

This commit is contained in:
Jean-Marc Valin 2011-01-28 22:24:40 -05:00
parent 17cab431db
commit d9e4b1d72c
4 changed files with 262 additions and 6 deletions

View file

@ -307,9 +307,9 @@ int main(int argc, char **argv)
file = fopen(BASENAME ".c", "w"); file = fopen(BASENAME ".c", "w");
dump_modes(file, m, nb); dump_modes(file, m, nb);
fclose(file); fclose(file);
file = fopen(BASENAME ".h", "w"); /*file = fopen(BASENAME ".h", "w");
dump_header(file, m, nb); dump_header(file, m, nb);
fclose(file); fclose(file);*/
for (i=0;i<nb;i++) for (i=0;i<nb;i++)
celt_mode_destroy(m[i]); celt_mode_destroy(m[i]);
free(m); free(m);

View file

@ -45,10 +45,6 @@
#define CELT_BITSTREAM_VERSION 0x8000000f #define CELT_BITSTREAM_VERSION 0x8000000f
#ifdef STATIC_MODES
#include "static_modes.h"
#endif
#define MAX_PERIOD 1024 #define MAX_PERIOD 1024
#ifndef CHANNELS #ifndef CHANNELS

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long