Ignore:
Timestamp:
Nov 20, 2006, 9:45:29 PM (18 years ago)
Author:
vladest
Message:

FFMPEG update
significal changes - avi/mpegts/mpegps now handled by ffmpeg demuxer. From my point of view it works much more corrdctly

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/libavcodec/mpegaudiodectab.h

    r256 r263  
    243243/* mpegaudio layer 3 huffman tables */
    244244
    245 const uint16_t mpa_huffcodes_1[4] = {
     245static const uint16_t mpa_huffcodes_1[4] = {
    246246 0x0001, 0x0001, 0x0001, 0x0000,
    247247};
    248248
    249 const uint8_t mpa_huffbits_1[4] = {
     249static const uint8_t mpa_huffbits_1[4] = {
    250250  1,  3,  2,  3,
    251251};
    252252
    253 const uint16_t mpa_huffcodes_2[9] = {
     253static const uint16_t mpa_huffcodes_2[9] = {
    254254 0x0001, 0x0002, 0x0001, 0x0003, 0x0001, 0x0001, 0x0003, 0x0002,
    255255 0x0000,
    256256};
    257257
    258 const uint8_t mpa_huffbits_2[9] = {
     258static const uint8_t mpa_huffbits_2[9] = {
    259259  1,  3,  6,  3,  3,  5,  5,  5,
    260260  6,
    261261};
    262262
    263 const uint16_t mpa_huffcodes_3[9] = {
     263static const uint16_t mpa_huffcodes_3[9] = {
    264264 0x0003, 0x0002, 0x0001, 0x0001, 0x0001, 0x0001, 0x0003, 0x0002,
    265265 0x0000,
    266266};
    267267
    268 const uint8_t mpa_huffbits_3[9] = {
     268static const uint8_t mpa_huffbits_3[9] = {
    269269  2,  2,  6,  3,  2,  5,  5,  5,
    270270  6,
    271271};
    272272
    273 const uint16_t mpa_huffcodes_5[16] = {
     273static const uint16_t mpa_huffcodes_5[16] = {
    274274 0x0001, 0x0002, 0x0006, 0x0005, 0x0003, 0x0001, 0x0004, 0x0004,
    275275 0x0007, 0x0005, 0x0007, 0x0001, 0x0006, 0x0001, 0x0001, 0x0000,
    276276};
    277277
    278 const uint8_t mpa_huffbits_5[16] = {
     278static const uint8_t mpa_huffbits_5[16] = {
    279279  1,  3,  6,  7,  3,  3,  6,  7,
    280280  6,  6,  7,  8,  7,  6,  7,  8,
    281281};
    282282
    283 const uint16_t mpa_huffcodes_6[16] = {
     283static const uint16_t mpa_huffcodes_6[16] = {
    284284 0x0007, 0x0003, 0x0005, 0x0001, 0x0006, 0x0002, 0x0003, 0x0002,
    285285 0x0005, 0x0004, 0x0004, 0x0001, 0x0003, 0x0003, 0x0002, 0x0000,
    286286};
    287287
    288 const uint8_t mpa_huffbits_6[16] = {
     288static const uint8_t mpa_huffbits_6[16] = {
    289289  3,  3,  5,  7,  3,  2,  4,  5,
    290290  4,  4,  5,  6,  6,  5,  6,  7,
    291291};
    292292
    293 const uint16_t mpa_huffcodes_7[36] = {
     293static const uint16_t mpa_huffcodes_7[36] = {
    294294 0x0001, 0x0002, 0x000a, 0x0013, 0x0010, 0x000a, 0x0003, 0x0003,
    295295 0x0007, 0x000a, 0x0005, 0x0003, 0x000b, 0x0004, 0x000d, 0x0011,
     
    299299};
    300300
    301 const uint8_t mpa_huffbits_7[36] = {
     301static const uint8_t mpa_huffbits_7[36] = {
    302302  1,  3,  6,  8,  8,  9,  3,  4,
    303303  6,  7,  7,  8,  6,  5,  7,  8,
     
    307307};
    308308
    309 const uint16_t mpa_huffcodes_8[36] = {
     309static const uint16_t mpa_huffcodes_8[36] = {
    310310 0x0003, 0x0004, 0x0006, 0x0012, 0x000c, 0x0005, 0x0005, 0x0001,
    311311 0x0002, 0x0010, 0x0009, 0x0003, 0x0007, 0x0003, 0x0005, 0x000e,
     
    315315};
    316316
    317 const uint8_t mpa_huffbits_8[36] = {
     317static const uint8_t mpa_huffbits_8[36] = {
    318318  2,  3,  6,  8,  8,  9,  3,  2,
    319319  4,  8,  8,  8,  6,  4,  6,  8,
     
    323323};
    324324
    325 const uint16_t mpa_huffcodes_9[36] = {
     325static const uint16_t mpa_huffcodes_9[36] = {
    326326 0x0007, 0x0005, 0x0009, 0x000e, 0x000f, 0x0007, 0x0006, 0x0004,
    327327 0x0005, 0x0005, 0x0006, 0x0007, 0x0007, 0x0006, 0x0008, 0x0008,
     
    331331};
    332332
    333 const uint8_t mpa_huffbits_9[36] = {
     333static const uint8_t mpa_huffbits_9[36] = {
    334334  3,  3,  5,  6,  8,  9,  3,  3,
    335335  4,  5,  6,  8,  4,  4,  5,  6,
     
    339339};
    340340
    341 const uint16_t mpa_huffcodes_10[64] = {
     341static const uint16_t mpa_huffcodes_10[64] = {
    342342 0x0001, 0x0002, 0x000a, 0x0017, 0x0023, 0x001e, 0x000c, 0x0011,
    343343 0x0003, 0x0003, 0x0008, 0x000c, 0x0012, 0x0015, 0x000c, 0x0007,
     
    350350};
    351351
    352 const uint8_t mpa_huffbits_10[64] = {
     352static const uint8_t mpa_huffbits_10[64] = {
    353353  1,  3,  6,  8,  9,  9,  9, 10,
    354354  3,  4,  6,  7,  8,  9,  8,  8,
     
    361361};
    362362
    363 const uint16_t mpa_huffcodes_11[64] = {
     363static const uint16_t mpa_huffcodes_11[64] = {
    364364 0x0003, 0x0004, 0x000a, 0x0018, 0x0022, 0x0021, 0x0015, 0x000f,
    365365 0x0005, 0x0003, 0x0004, 0x000a, 0x0020, 0x0011, 0x000b, 0x000a,
     
    372372};
    373373
    374 const uint8_t mpa_huffbits_11[64] = {
     374static const uint8_t mpa_huffbits_11[64] = {
    375375  2,  3,  5,  7,  8,  9,  8,  9,
    376376  3,  3,  4,  6,  8,  8,  7,  8,
     
    383383};
    384384
    385 const uint16_t mpa_huffcodes_12[64] = {
     385static const uint16_t mpa_huffcodes_12[64] = {
    386386 0x0009, 0x0006, 0x0010, 0x0021, 0x0029, 0x0027, 0x0026, 0x001a,
    387387 0x0007, 0x0005, 0x0006, 0x0009, 0x0017, 0x0010, 0x001a, 0x000b,
     
    394394};
    395395
    396 const uint8_t mpa_huffbits_12[64] = {
     396static const uint8_t mpa_huffbits_12[64] = {
    397397  4,  3,  5,  7,  8,  9,  9,  9,
    398398  3,  3,  4,  5,  7,  7,  8,  8,
     
    405405};
    406406
    407 const uint16_t mpa_huffcodes_13[256] = {
     407static const uint16_t mpa_huffcodes_13[256] = {
    408408 0x0001, 0x0005, 0x000e, 0x0015, 0x0022, 0x0033, 0x002e, 0x0047,
    409409 0x002a, 0x0034, 0x0044, 0x0034, 0x0043, 0x002c, 0x002b, 0x0013,
     
    440440};
    441441
    442 const uint8_t mpa_huffbits_13[256] = {
     442static const uint8_t mpa_huffbits_13[256] = {
    443443  1,  4,  6,  7,  8,  9,  9, 10,
    444444  9, 10, 11, 11, 12, 12, 13, 13,
     
    475475};
    476476
    477 const uint16_t mpa_huffcodes_15[256] = {
     477static const uint16_t mpa_huffcodes_15[256] = {
    478478 0x0007, 0x000c, 0x0012, 0x0035, 0x002f, 0x004c, 0x007c, 0x006c,
    479479 0x0059, 0x007b, 0x006c, 0x0077, 0x006b, 0x0051, 0x007a, 0x003f,
     
    510510};
    511511
    512 const uint8_t mpa_huffbits_15[256] = {
     512static const uint8_t mpa_huffbits_15[256] = {
    513513  3,  4,  5,  7,  7,  8,  9,  9,
    514514  9, 10, 10, 11, 11, 11, 12, 13,
     
    545545};
    546546
    547 const uint16_t mpa_huffcodes_16[256] = {
     547static const uint16_t mpa_huffcodes_16[256] = {
    548548 0x0001, 0x0005, 0x000e, 0x002c, 0x004a, 0x003f, 0x006e, 0x005d,
    549549 0x00ac, 0x0095, 0x008a, 0x00f2, 0x00e1, 0x00c3, 0x0178, 0x0011,
     
    580580};
    581581
    582 const uint8_t mpa_huffbits_16[256] = {
     582static const uint8_t mpa_huffbits_16[256] = {
    583583  1,  4,  6,  8,  9,  9, 10, 10,
    584584 11, 11, 11, 12, 12, 12, 13,  9,
     
    615615};
    616616
    617 const uint16_t mpa_huffcodes_24[256] = {
     617static const uint16_t mpa_huffcodes_24[256] = {
    618618 0x000f, 0x000d, 0x002e, 0x0050, 0x0092, 0x0106, 0x00f8, 0x01b2,
    619619 0x01aa, 0x029d, 0x028d, 0x0289, 0x026d, 0x0205, 0x0408, 0x0058,
     
    650650};
    651651
    652 const uint8_t mpa_huffbits_24[256] = {
     652static const uint8_t mpa_huffbits_24[256] = {
    653653  4,  4,  6,  7,  8,  9,  9, 10,
    654654 10, 11, 11, 11, 11, 11, 12,  9,
     
    685685};
    686686
    687 const HuffTable mpa_huff_tables[16] = {
     687static const HuffTable mpa_huff_tables[16] = {
    688688{ 1, NULL, NULL },
    689689{ 2, mpa_huffbits_1, mpa_huffcodes_1 },
     
    704704};
    705705
    706 const uint8_t mpa_huff_data[32][2] = {
     706static const uint8_t mpa_huff_data[32][2] = {
    707707{ 0, 0 },
    708708{ 1, 0 },
     
    752752
    753753/* band size tables */
    754 const uint8_t band_size_long[9][22] = {
     754static const uint8_t band_size_long[9][22] = {
    755755{ 4, 4, 4, 4, 4, 4, 6, 6, 8, 8, 10,
    756756  12, 16, 20, 24, 28, 34, 42, 50, 54, 76, 158, }, /* 44100 */
     
    773773};
    774774
    775 const uint8_t band_size_short[9][13] = {
     775static const uint8_t band_size_short[9][13] = {
    776776{ 4, 4, 4, 4, 6, 8, 10, 12, 14, 18, 22, 30, 56, }, /* 44100 */
    777777{ 4, 4, 4, 4, 6, 6, 10, 12, 14, 16, 20, 26, 66, }, /* 48000 */
     
    785785};
    786786
    787 const uint8_t mpa_pretab[2][22] = {
     787static const uint8_t mpa_pretab[2][22] = {
    788788    { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
    789789    { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 3, 3, 3, 2, 0 },
     
    791791
    792792/* table for alias reduction (XXX: store it as integer !) */
    793 const float ci_table[8] = {
     793static const float ci_table[8] = {
    794794    -0.6, -0.535, -0.33, -0.185, -0.095, -0.041, -0.0142, -0.0037,
    795795};
Note: See TracChangeset for help on using the changeset viewer.