diff options
author | Dave Chapman <dave@dchapman.com> | 2005-11-12 15:06:46 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2005-11-12 15:06:46 +0000 |
commit | f7b2e840a7c8bc80b9f9cc99fb48b43c99123a7a (patch) | |
tree | 9006302dfbb19726cab2d36b0ef34525bf499a95 /apps/codecs/libwavpack/pack.c | |
parent | 782d335dd4a2276e3f6506d4f56075c3d34e51aa (diff) |
"signed char" police
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7823 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libwavpack/pack.c')
-rw-r--r-- | apps/codecs/libwavpack/pack.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/codecs/libwavpack/pack.c b/apps/codecs/libwavpack/pack.c index ef5feca367..da4d3f328f 100644 --- a/apps/codecs/libwavpack/pack.c +++ b/apps/codecs/libwavpack/pack.c @@ -27,9 +27,9 @@ // 17 & 18 are special functions using the previous 2 samples, and negative // values indicate cross channel decorrelation (in stereo only). -static const 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 char fast_terms [] = { 17,17,0 }; +static const signed char default_terms [] = { 18,18,2,3,-2,0 }; +static const signed char high_terms [] = { 18,18,2,3,-2,18,2,4,7,5,3,6,0 }; +static const signed char fast_terms [] = { 17,17,0 }; ///////////////////////////// executable code //////////////////////////////// @@ -41,7 +41,7 @@ void pack_init (WavpackContext *wpc) WavpackStream *wps = &wpc->stream; ulong flags = wps->wphdr.flags; struct decorr_pass *dpp; - const char *term_string; + const signed char *term_string; int ti; wps->sample_index = 0; |