Changeset 263 for trunk/libavcodec/mpegaudiodectab.h
- Timestamp:
- Nov 20, 2006, 9:45:29 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/libavcodec/mpegaudiodectab.h ¶
r256 r263 243 243 /* mpegaudio layer 3 huffman tables */ 244 244 245 const uint16_t mpa_huffcodes_1[4] = {245 static const uint16_t mpa_huffcodes_1[4] = { 246 246 0x0001, 0x0001, 0x0001, 0x0000, 247 247 }; 248 248 249 const uint8_t mpa_huffbits_1[4] = {249 static const uint8_t mpa_huffbits_1[4] = { 250 250 1, 3, 2, 3, 251 251 }; 252 252 253 const uint16_t mpa_huffcodes_2[9] = {253 static const uint16_t mpa_huffcodes_2[9] = { 254 254 0x0001, 0x0002, 0x0001, 0x0003, 0x0001, 0x0001, 0x0003, 0x0002, 255 255 0x0000, 256 256 }; 257 257 258 const uint8_t mpa_huffbits_2[9] = {258 static const uint8_t mpa_huffbits_2[9] = { 259 259 1, 3, 6, 3, 3, 5, 5, 5, 260 260 6, 261 261 }; 262 262 263 const uint16_t mpa_huffcodes_3[9] = {263 static const uint16_t mpa_huffcodes_3[9] = { 264 264 0x0003, 0x0002, 0x0001, 0x0001, 0x0001, 0x0001, 0x0003, 0x0002, 265 265 0x0000, 266 266 }; 267 267 268 const uint8_t mpa_huffbits_3[9] = {268 static const uint8_t mpa_huffbits_3[9] = { 269 269 2, 2, 6, 3, 2, 5, 5, 5, 270 270 6, 271 271 }; 272 272 273 const uint16_t mpa_huffcodes_5[16] = {273 static const uint16_t mpa_huffcodes_5[16] = { 274 274 0x0001, 0x0002, 0x0006, 0x0005, 0x0003, 0x0001, 0x0004, 0x0004, 275 275 0x0007, 0x0005, 0x0007, 0x0001, 0x0006, 0x0001, 0x0001, 0x0000, 276 276 }; 277 277 278 const uint8_t mpa_huffbits_5[16] = {278 static const uint8_t mpa_huffbits_5[16] = { 279 279 1, 3, 6, 7, 3, 3, 6, 7, 280 280 6, 6, 7, 8, 7, 6, 7, 8, 281 281 }; 282 282 283 const uint16_t mpa_huffcodes_6[16] = {283 static const uint16_t mpa_huffcodes_6[16] = { 284 284 0x0007, 0x0003, 0x0005, 0x0001, 0x0006, 0x0002, 0x0003, 0x0002, 285 285 0x0005, 0x0004, 0x0004, 0x0001, 0x0003, 0x0003, 0x0002, 0x0000, 286 286 }; 287 287 288 const uint8_t mpa_huffbits_6[16] = {288 static const uint8_t mpa_huffbits_6[16] = { 289 289 3, 3, 5, 7, 3, 2, 4, 5, 290 290 4, 4, 5, 6, 6, 5, 6, 7, 291 291 }; 292 292 293 const uint16_t mpa_huffcodes_7[36] = {293 static const uint16_t mpa_huffcodes_7[36] = { 294 294 0x0001, 0x0002, 0x000a, 0x0013, 0x0010, 0x000a, 0x0003, 0x0003, 295 295 0x0007, 0x000a, 0x0005, 0x0003, 0x000b, 0x0004, 0x000d, 0x0011, … … 299 299 }; 300 300 301 const uint8_t mpa_huffbits_7[36] = {301 static const uint8_t mpa_huffbits_7[36] = { 302 302 1, 3, 6, 8, 8, 9, 3, 4, 303 303 6, 7, 7, 8, 6, 5, 7, 8, … … 307 307 }; 308 308 309 const uint16_t mpa_huffcodes_8[36] = {309 static const uint16_t mpa_huffcodes_8[36] = { 310 310 0x0003, 0x0004, 0x0006, 0x0012, 0x000c, 0x0005, 0x0005, 0x0001, 311 311 0x0002, 0x0010, 0x0009, 0x0003, 0x0007, 0x0003, 0x0005, 0x000e, … … 315 315 }; 316 316 317 const uint8_t mpa_huffbits_8[36] = {317 static const uint8_t mpa_huffbits_8[36] = { 318 318 2, 3, 6, 8, 8, 9, 3, 2, 319 319 4, 8, 8, 8, 6, 4, 6, 8, … … 323 323 }; 324 324 325 const uint16_t mpa_huffcodes_9[36] = {325 static const uint16_t mpa_huffcodes_9[36] = { 326 326 0x0007, 0x0005, 0x0009, 0x000e, 0x000f, 0x0007, 0x0006, 0x0004, 327 327 0x0005, 0x0005, 0x0006, 0x0007, 0x0007, 0x0006, 0x0008, 0x0008, … … 331 331 }; 332 332 333 const uint8_t mpa_huffbits_9[36] = {333 static const uint8_t mpa_huffbits_9[36] = { 334 334 3, 3, 5, 6, 8, 9, 3, 3, 335 335 4, 5, 6, 8, 4, 4, 5, 6, … … 339 339 }; 340 340 341 const uint16_t mpa_huffcodes_10[64] = {341 static const uint16_t mpa_huffcodes_10[64] = { 342 342 0x0001, 0x0002, 0x000a, 0x0017, 0x0023, 0x001e, 0x000c, 0x0011, 343 343 0x0003, 0x0003, 0x0008, 0x000c, 0x0012, 0x0015, 0x000c, 0x0007, … … 350 350 }; 351 351 352 const uint8_t mpa_huffbits_10[64] = {352 static const uint8_t mpa_huffbits_10[64] = { 353 353 1, 3, 6, 8, 9, 9, 9, 10, 354 354 3, 4, 6, 7, 8, 9, 8, 8, … … 361 361 }; 362 362 363 const uint16_t mpa_huffcodes_11[64] = {363 static const uint16_t mpa_huffcodes_11[64] = { 364 364 0x0003, 0x0004, 0x000a, 0x0018, 0x0022, 0x0021, 0x0015, 0x000f, 365 365 0x0005, 0x0003, 0x0004, 0x000a, 0x0020, 0x0011, 0x000b, 0x000a, … … 372 372 }; 373 373 374 const uint8_t mpa_huffbits_11[64] = {374 static const uint8_t mpa_huffbits_11[64] = { 375 375 2, 3, 5, 7, 8, 9, 8, 9, 376 376 3, 3, 4, 6, 8, 8, 7, 8, … … 383 383 }; 384 384 385 const uint16_t mpa_huffcodes_12[64] = {385 static const uint16_t mpa_huffcodes_12[64] = { 386 386 0x0009, 0x0006, 0x0010, 0x0021, 0x0029, 0x0027, 0x0026, 0x001a, 387 387 0x0007, 0x0005, 0x0006, 0x0009, 0x0017, 0x0010, 0x001a, 0x000b, … … 394 394 }; 395 395 396 const uint8_t mpa_huffbits_12[64] = {396 static const uint8_t mpa_huffbits_12[64] = { 397 397 4, 3, 5, 7, 8, 9, 9, 9, 398 398 3, 3, 4, 5, 7, 7, 8, 8, … … 405 405 }; 406 406 407 const uint16_t mpa_huffcodes_13[256] = {407 static const uint16_t mpa_huffcodes_13[256] = { 408 408 0x0001, 0x0005, 0x000e, 0x0015, 0x0022, 0x0033, 0x002e, 0x0047, 409 409 0x002a, 0x0034, 0x0044, 0x0034, 0x0043, 0x002c, 0x002b, 0x0013, … … 440 440 }; 441 441 442 const uint8_t mpa_huffbits_13[256] = {442 static const uint8_t mpa_huffbits_13[256] = { 443 443 1, 4, 6, 7, 8, 9, 9, 10, 444 444 9, 10, 11, 11, 12, 12, 13, 13, … … 475 475 }; 476 476 477 const uint16_t mpa_huffcodes_15[256] = {477 static const uint16_t mpa_huffcodes_15[256] = { 478 478 0x0007, 0x000c, 0x0012, 0x0035, 0x002f, 0x004c, 0x007c, 0x006c, 479 479 0x0059, 0x007b, 0x006c, 0x0077, 0x006b, 0x0051, 0x007a, 0x003f, … … 510 510 }; 511 511 512 const uint8_t mpa_huffbits_15[256] = {512 static const uint8_t mpa_huffbits_15[256] = { 513 513 3, 4, 5, 7, 7, 8, 9, 9, 514 514 9, 10, 10, 11, 11, 11, 12, 13, … … 545 545 }; 546 546 547 const uint16_t mpa_huffcodes_16[256] = {547 static const uint16_t mpa_huffcodes_16[256] = { 548 548 0x0001, 0x0005, 0x000e, 0x002c, 0x004a, 0x003f, 0x006e, 0x005d, 549 549 0x00ac, 0x0095, 0x008a, 0x00f2, 0x00e1, 0x00c3, 0x0178, 0x0011, … … 580 580 }; 581 581 582 const uint8_t mpa_huffbits_16[256] = {582 static const uint8_t mpa_huffbits_16[256] = { 583 583 1, 4, 6, 8, 9, 9, 10, 10, 584 584 11, 11, 11, 12, 12, 12, 13, 9, … … 615 615 }; 616 616 617 const uint16_t mpa_huffcodes_24[256] = {617 static const uint16_t mpa_huffcodes_24[256] = { 618 618 0x000f, 0x000d, 0x002e, 0x0050, 0x0092, 0x0106, 0x00f8, 0x01b2, 619 619 0x01aa, 0x029d, 0x028d, 0x0289, 0x026d, 0x0205, 0x0408, 0x0058, … … 650 650 }; 651 651 652 const uint8_t mpa_huffbits_24[256] = {652 static const uint8_t mpa_huffbits_24[256] = { 653 653 4, 4, 6, 7, 8, 9, 9, 10, 654 654 10, 11, 11, 11, 11, 11, 12, 9, … … 685 685 }; 686 686 687 const HuffTable mpa_huff_tables[16] = {687 static const HuffTable mpa_huff_tables[16] = { 688 688 { 1, NULL, NULL }, 689 689 { 2, mpa_huffbits_1, mpa_huffcodes_1 }, … … 704 704 }; 705 705 706 const uint8_t mpa_huff_data[32][2] = {706 static const uint8_t mpa_huff_data[32][2] = { 707 707 { 0, 0 }, 708 708 { 1, 0 }, … … 752 752 753 753 /* band size tables */ 754 const uint8_t band_size_long[9][22] = {754 static const uint8_t band_size_long[9][22] = { 755 755 { 4, 4, 4, 4, 4, 4, 6, 6, 8, 8, 10, 756 756 12, 16, 20, 24, 28, 34, 42, 50, 54, 76, 158, }, /* 44100 */ … … 773 773 }; 774 774 775 const uint8_t band_size_short[9][13] = {775 static const uint8_t band_size_short[9][13] = { 776 776 { 4, 4, 4, 4, 6, 8, 10, 12, 14, 18, 22, 30, 56, }, /* 44100 */ 777 777 { 4, 4, 4, 4, 6, 6, 10, 12, 14, 16, 20, 26, 66, }, /* 48000 */ … … 785 785 }; 786 786 787 const uint8_t mpa_pretab[2][22] = {787 static const uint8_t mpa_pretab[2][22] = { 788 788 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, 789 789 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 3, 3, 3, 2, 0 }, … … 791 791 792 792 /* table for alias reduction (XXX: store it as integer !) */ 793 const float ci_table[8] = {793 static const float ci_table[8] = { 794 794 -0.6, -0.535, -0.33, -0.185, -0.095, -0.041, -0.0142, -0.0037, 795 795 };
Note:
See TracChangeset
for help on using the changeset viewer.