forked from len0rd/rockbox
Vorbis optimizations: allocation of PCM buffers in IRAM, avoiding copying.
Slight code improvements to the MDCT functions. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6590 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
127f14210f
commit
0f10e898f0
11 changed files with 110 additions and 132 deletions
|
@ -501,7 +501,7 @@ int ogg_page_packets(ogg_page *og){
|
|||
/* Static CRC calculation table. See older code in CVS for dead
|
||||
run-time initialization code. */
|
||||
|
||||
static ogg_uint32_t crc_lookup[256] IDATA_ATTR = {
|
||||
static ogg_uint32_t crc_lookup[256] = {
|
||||
0x00000000,0x04c11db7,0x09823b6e,0x0d4326d9,
|
||||
0x130476dc,0x17c56b6b,0x1a864db2,0x1e475005,
|
||||
0x2608edb8,0x22c9f00f,0x2f8ad6d6,0x2b4bcb61,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue