~ubuntu-branches/ubuntu/trusty/gst-libav1.0/trusty-proposed

« back to all changes in this revision

Viewing changes to gst-libs/ext/libav/libavcodec/mpegaudiodata.c

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2013-09-24 17:07:00 UTC
  • mfrom: (1.1.17) (7.1.9 experimental)
  • Revision ID: package-import@ubuntu.com-20130924170700-4dg62s3pwl0pdakz
Tags: 1.2.0-1
* New upstream stable release:
  + debian/control:
    - Build depend on GStreamer and gst-plugins-base >= 1.2.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
const uint16_t avpriv_mpa_freq_tab[3] = { 44100, 48000, 32000 };
41
41
 
42
42
/*******************************************************/
43
 
/* half mpeg encoding window (full precision) */
44
 
const int32_t ff_mpa_enwindow[257] = {
45
 
     0,    -1,    -1,    -1,    -1,    -1,    -1,    -2,
46
 
    -2,    -2,    -2,    -3,    -3,    -4,    -4,    -5,
47
 
    -5,    -6,    -7,    -7,    -8,    -9,   -10,   -11,
48
 
   -13,   -14,   -16,   -17,   -19,   -21,   -24,   -26,
49
 
   -29,   -31,   -35,   -38,   -41,   -45,   -49,   -53,
50
 
   -58,   -63,   -68,   -73,   -79,   -85,   -91,   -97,
51
 
  -104,  -111,  -117,  -125,  -132,  -139,  -147,  -154,
52
 
  -161,  -169,  -176,  -183,  -190,  -196,  -202,  -208,
53
 
   213,   218,   222,   225,   227,   228,   228,   227,
54
 
   224,   221,   215,   208,   200,   189,   177,   163,
55
 
   146,   127,   106,    83,    57,    29,    -2,   -36,
56
 
   -72,  -111,  -153,  -197,  -244,  -294,  -347,  -401,
57
 
  -459,  -519,  -581,  -645,  -711,  -779,  -848,  -919,
58
 
  -991, -1064, -1137, -1210, -1283, -1356, -1428, -1498,
59
 
 -1567, -1634, -1698, -1759, -1817, -1870, -1919, -1962,
60
 
 -2001, -2032, -2057, -2075, -2085, -2087, -2080, -2063,
61
 
  2037,  2000,  1952,  1893,  1822,  1739,  1644,  1535,
62
 
  1414,  1280,  1131,   970,   794,   605,   402,   185,
63
 
   -45,  -288,  -545,  -814, -1095, -1388, -1692, -2006,
64
 
 -2330, -2663, -3004, -3351, -3705, -4063, -4425, -4788,
65
 
 -5153, -5517, -5879, -6237, -6589, -6935, -7271, -7597,
66
 
 -7910, -8209, -8491, -8755, -8998, -9219, -9416, -9585,
67
 
 -9727, -9838, -9916, -9959, -9966, -9935, -9863, -9750,
68
 
 -9592, -9389, -9139, -8840, -8492, -8092, -7640, -7134,
69
 
  6574,  5959,  5288,  4561,  3776,  2935,  2037,  1082,
70
 
    70,  -998, -2122, -3300, -4533, -5818, -7154, -8540,
71
 
 -9975,-11455,-12980,-14548,-16155,-17799,-19478,-21189,
72
 
-22929,-24694,-26482,-28289,-30112,-31947,-33791,-35640,
73
 
-37489,-39336,-41176,-43006,-44821,-46617,-48390,-50137,
74
 
-51853,-53534,-55178,-56778,-58333,-59838,-61289,-62684,
75
 
-64019,-65290,-66494,-67629,-68692,-69679,-70590,-71420,
76
 
-72169,-72835,-73415,-73908,-74313,-74630,-74856,-74992,
77
 
 75038,
78
 
};
79
 
 
80
 
/*******************************************************/
81
43
/* layer 2 tables */
82
44
 
83
45
const int ff_mpa_sblimit_table[5] = { 27 , 30 , 8, 12 , 30 };