forked from len0rd/rockbox
Fix red and yellow. Needed to remove one codebook from IRAM due to full IRAM on iPod4G.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27226 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
52f17dfe9d
commit
c794c1feae
2 changed files with 3 additions and 3 deletions
|
@ -138,13 +138,13 @@ void faad_rewindbits(bitfile *ld)
|
||||||
|
|
||||||
tmp = ld->start[0];
|
tmp = ld->start[0];
|
||||||
#ifndef ARCH_IS_BIG_ENDIAN
|
#ifndef ARCH_IS_BIG_ENDIAN
|
||||||
BSWAP(tmp);
|
tmp = BSWAP(tmp);
|
||||||
#endif
|
#endif
|
||||||
ld->bufa = tmp;
|
ld->bufa = tmp;
|
||||||
|
|
||||||
tmp = ld->start[1];
|
tmp = ld->start[1];
|
||||||
#ifndef ARCH_IS_BIG_ENDIAN
|
#ifndef ARCH_IS_BIG_ENDIAN
|
||||||
BSWAP(tmp);
|
tmp = BSWAP(tmp);
|
||||||
#endif
|
#endif
|
||||||
ld->bufb = tmp;
|
ld->bufb = tmp;
|
||||||
ld->bits_left = 32;
|
ld->bits_left = 32;
|
||||||
|
|
|
@ -115,7 +115,7 @@ static hcb hcb10_1[] ICONST_ATTR_FAAD_LARGE_IRAM = {
|
||||||
*
|
*
|
||||||
* Gives size of codeword and actual data (x,y,v,w)
|
* Gives size of codeword and actual data (x,y,v,w)
|
||||||
*/
|
*/
|
||||||
static hcb_2_pair hcb10_2[] ICONST_ATTR = {
|
static hcb_2_pair hcb10_2[] ICONST_ATTR_FAAD_LARGE_IRAM = {
|
||||||
/* 4 bit codewords */
|
/* 4 bit codewords */
|
||||||
{ 4, 1, 1 },
|
{ 4, 1, 1 },
|
||||||
{ 4, 1, 2 },
|
{ 4, 1, 2 },
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue