# HG changeset patch # User bcoudurier # Date 1209213277 0 # Node ID 798391f1ce133d5374c305cf8fd9930fbc51568f # Parent 0c6c2e1b7fb307dfaa25af271fce3d49a2aa1870 values can fit uint8_t diff -r 0c6c2e1b7fb3 -r 798391f1ce13 mpegaudiodec.c --- a/mpegaudiodec.c Sat Apr 26 12:33:02 2008 +0000 +++ b/mpegaudiodec.c Sat Apr 26 12:34:37 2008 +0000 @@ -2476,10 +2476,10 @@ #ifdef CONFIG_MP3ON4_DECODER /* Next 3 arrays are indexed by channel config number (passed via codecdata) */ -static const int mp3Frames[16] = {0,1,1,2,3,3,4,5,2}; /* number of mp3 decoder instances */ -static const int mp3Channels[16] = {0,1,2,3,4,5,6,8,4}; /* total output channels */ +static const uint8_t mp3Frames[16] = {0,1,1,2,3,3,4,5,2}; /* number of mp3 decoder instances */ +static const uint8_t mp3Channels[16] = {0,1,2,3,4,5,6,8,4}; /* total output channels */ /* offsets into output buffer, assume output order is FL FR BL BR C LFE */ -static const int chan_offset[9][5] = { +static const uint8_t chan_offset[9][5] = { {0}, {0}, // C {0}, // FLR @@ -2566,7 +2566,7 @@ const unsigned char *start2 = buf, *start; int fr, i, j, n; int off = avctx->channels; - const int *coff = chan_offset[s->chan_cfg]; + const uint8_t *coff = chan_offset[s->chan_cfg]; len = buf_size;