diff options
author | Brad Midgley <bmidgley@xmission.com> | 2008-02-29 03:56:22 +0000 |
---|---|---|
committer | Brad Midgley <bmidgley@xmission.com> | 2008-02-29 03:56:22 +0000 |
commit | 7a68b05beaed5944dcd88f23002c9f55a2f74ba6 (patch) | |
tree | 1160d40f382b5182057ed32b54b49ee07fd9922a /sbc/sbc.c | |
parent | 7ae45c5a353a3e6a32044263cb1a367f237e6505 (diff) |
Cidorvan's 4-subband overflow fixes
Diffstat (limited to 'sbc/sbc.c')
-rw-r--r-- | sbc/sbc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -375,7 +375,7 @@ static int sbc_unpack_frame(const uint8_t *data, struct sbc_frame *frame, int ch, sb, blk, bit; /* channel, subband, block and bit standard counters */ int bits[2][8]; /* bits distribution */ - int levels[2][8]; /* levels derived from that */ + uint32_t levels[2][8]; /* levels derived from that */ if (len < 4) return -1; |