~ubuntu-branches/ubuntu/trusty/libav/trusty-proposed

« back to all changes in this revision

Viewing changes to libavcodec/aacsbrdata.h

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2013-10-22 23:24:08 UTC
  • mfrom: (1.3.36 sid)
  • Revision ID: package-import@ubuntu.com-20131022232408-b8tvvn4pyzri9mi3
Tags: 6:9.10-1ubuntu1
* Build all -extra flavors from this source package, as libav got demoted
  from main to universe, cf LP: #1243235
* Simplify debian/rules to follow exactly the code that debian executes
* New upstream (LP: #1180288) fixes lots of security issues (LP: #1242802)
* Merge from unstable, remaining changes:
  - build-depend on libtiff5-dev rather than libtiff4-dev,
    avoids FTBFS caused by imlib
  - follow the regular debian codepaths

Show diffs side-by-side

added added

removed removed

Lines of Context:
267
267
};
268
268
 
269
269
///< window coefficients for analysis/synthesis QMF banks
270
 
static DECLARE_ALIGNED(16, float, sbr_qmf_window_ds)[320];
271
 
static DECLARE_ALIGNED(16, float, sbr_qmf_window_us)[640] = {
 
270
static DECLARE_ALIGNED(32, float, sbr_qmf_window_ds)[320];
 
271
static DECLARE_ALIGNED(32, float, sbr_qmf_window_us)[640] = {
272
272
     0.0000000000, -0.0005525286, -0.0005617692, -0.0004947518,
273
273
    -0.0004875227, -0.0004893791, -0.0005040714, -0.0005226564,
274
274
    -0.0005466565, -0.0005677802, -0.0005870930, -0.0006132747,
352
352
     0.8537385600,
353
353
};
354
354
 
355
 
static const float sbr_noise_table[512][2] = {
 
355
/* First two entries repeated at end to simplify SIMD implementations. */
 
356
const DECLARE_ALIGNED(16, float, ff_sbr_noise_table)[][2] = {
356
357
{-0.99948153278296, -0.59483417516607}, { 0.97113454393991, -0.67528515225647},
357
358
{ 0.14130051758487, -0.95090983575689}, {-0.47005496701697, -0.37340549728647},
358
359
{ 0.80705063769351,  0.29653668284408}, {-0.38981478896926,  0.89572605717087},
609
610
{-0.93412041758744,  0.41374052024363}, { 0.96063943315511,  0.93116709541280},
610
611
{ 0.97534253457837,  0.86150930812689}, { 0.99642466504163,  0.70190043427512},
611
612
{-0.94705089665984, -0.29580042814306}, { 0.91599807087376, -0.98147830385781},
 
613
{-0.99948153278296, -0.59483417516607}, { 0.97113454393991, -0.67528515225647},
612
614
};
613
615
 
614
616
#endif /* AVCODEC_AACSBRDATA_H */