1
0
Fork 0
forked from len0rd/rockbox

"signed char" police

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7823 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2005-11-12 15:06:46 +00:00
parent 782d335dd4
commit f7b2e840a7
2 changed files with 5 additions and 5 deletions

View file

@ -325,7 +325,7 @@ typedef struct mp4AudioSpecificConfig
/*uint8_t*/ unsigned char aacSpectralDataResilienceFlag; /*uint8_t*/ unsigned char aacSpectralDataResilienceFlag;
/*uint8_t*/ unsigned char epConfig; /*uint8_t*/ unsigned char epConfig;
/*uint8_t*/ char sbr_present_flag; /*uint8_t*/ signed char sbr_present_flag;
/*uint8_t*/ char forceUpSampling; /*uint8_t*/ char forceUpSampling;
/*uint8_t*/ char downSampledSBR; /*uint8_t*/ char downSampledSBR;
} mp4AudioSpecificConfig; } mp4AudioSpecificConfig;

View file

@ -27,9 +27,9 @@
// 17 & 18 are special functions using the previous 2 samples, and negative // 17 & 18 are special functions using the previous 2 samples, and negative
// values indicate cross channel decorrelation (in stereo only). // values indicate cross channel decorrelation (in stereo only).
static const char default_terms [] = { 18,18,2,3,-2,0 }; static const signed char default_terms [] = { 18,18,2,3,-2,0 };
static const char high_terms [] = { 18,18,2,3,-2,18,2,4,7,5,3,6,0 }; static const signed char high_terms [] = { 18,18,2,3,-2,18,2,4,7,5,3,6,0 };
static const char fast_terms [] = { 17,17,0 }; static const signed char fast_terms [] = { 17,17,0 };
///////////////////////////// executable code //////////////////////////////// ///////////////////////////// executable code ////////////////////////////////
@ -41,7 +41,7 @@ void pack_init (WavpackContext *wpc)
WavpackStream *wps = &wpc->stream; WavpackStream *wps = &wpc->stream;
ulong flags = wps->wphdr.flags; ulong flags = wps->wphdr.flags;
struct decorr_pass *dpp; struct decorr_pass *dpp;
const char *term_string; const signed char *term_string;
int ti; int ti;
wps->sample_index = 0; wps->sample_index = 0;