summaryrefslogtreecommitdiffstats
path: root/libAACdec/src/arm/block_arm.cpp
blob: d9d0cf81fb1e3a15e20733497a78b22e89c02192 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/********************************  Fraunhofer IIS  ***************************

                        (C) Copyright Fraunhofer IIS (2010)
                               All Rights Reserved

    Please be advised that this software and/or program delivery is
    Confidential Information of Fraunhofer and subject to and covered by the

    Fraunhofer IIS Software Evaluation Agreement
    between Google Inc. and  Fraunhofer
    effective and in full force since March 1, 2012.

    You may use this software and/or program only under the terms and
    conditions described in the above mentioned Fraunhofer IIS Software
    Evaluation Agreement. Any other and/or further use requires a separate agreement.


   $Id$
   Author(s):   Arthur Tritthart
   Description: (ARM optimised) Scaling of spectral data

   This software and/or program is protected by copyright law and international
   treaties. Any reproduction or distribution of this software and/or program,
   or any portion of it, may result in severe civil and criminal penalties, and
   will be prosecuted to the maximum extent possible under law.

******************************************************************************/


#define FUNCTION_CBlock_ScaleSpectralData_func1

/* Note: This loop is only separated for ARM in order to save cycles
         by loop unrolling. The ARM core provides by default a 5-cycle
         loop overhead per sample, that goes down to 1-cycle per sample
         with an optimal 4x-loop construct (do - 4x - while).
*/

FDK_INLINE static void CBlock_ScaleSpectralData_func1(
    FIXP_DBL *pSpectrum,
    int max_band,
    const SHORT * RESTRICT BandOffsets,
    int SpecScale_window,
    const SHORT * RESTRICT pSfbScale,
    int window)
{
  int band_offset = 0;
  for (int band=0; band < max_band; band++)
  {
    int runs = band_offset;
    band_offset = BandOffsets[band+1];
    runs = band_offset - runs;    /* is always a multiple of 4 */
    int scale = SpecScale_window-pSfbScale[window*16+band];
    if (scale)
    {
      do
      {
        FIXP_DBL tmp0, tmp1, tmp2, tmp3;
        tmp0 = pSpectrum[0];
        tmp1 = pSpectrum[1];
        tmp2 = pSpectrum[2];
        tmp3 = pSpectrum[3];
        tmp0 >>= scale;
        tmp1 >>= scale;
        tmp2 >>= scale;
        tmp3 >>= scale;
        *pSpectrum++ = tmp0;
        *pSpectrum++ = tmp1;
        *pSpectrum++ = tmp2;
        *pSpectrum++ = tmp3;
      } while ((runs = runs-4) != 0);
    }
    else
    {
      pSpectrum+= runs;
    }
  }
}