summaryrefslogtreecommitdiffstats
path: root/libAACenc/src/bandwidth.cpp
blob: 51c3a33dbe7c0b9cf06a9c19a579b384975db12e (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
/*************************  Fast MPEG AAC Audio Encoder  **********************

                     (C) Copyright Fraunhofer IIS (1999)
                               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.


   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.

   $Id$
   Initial author:       M. Schug / A. Groeschel
   contents/description: bandwidth expert

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

#include "channel_map.h"
#include "bandwidth.h"
#include "aacEnc_ram.h"

typedef struct{
  INT chanBitRate;
  INT bandWidthMono;
  INT bandWidth2AndMoreChan;

} BANDWIDTH_TAB;

static const BANDWIDTH_TAB bandWidthTable[] = {
  {0,      3700,  5000},
  {12000,  5000,  6400},
  {20000,  6900,  9640},
  {28000,  9600, 13050},
  {40000, 12060, 14260},
  {56000, 13950, 15500},
  {72000, 14200, 16120},
  {96000, 17000, 17000},
  {576001,17000, 17000}
};


static const BANDWIDTH_TAB bandWidthTable_LD_22050[] = {
  { 8000,  2000,  2400},
  {12000,  2500,  2700},
  {16000,  3300,  3100},
  {24000,  6250,  7200},
  {32000,  9200,  10500},
  {40000,  16000, 16000},
  {48000,  16000, 16000},
  {360001, 16000, 16000}
};

static const BANDWIDTH_TAB bandWidthTable_LD_24000[] = {
  { 8000,  2000,  2000},
  {12000,  2000,  2300},
  {16000,  2200,  2500},
  {24000,  5650,  6400},
  {32000,  11600, 12000},
  {40000,  12000, 16000},
  {48000,  16000, 16000},
  {64000,  16000, 16000},
  {360001, 16000, 16000}
};

static const BANDWIDTH_TAB bandWidthTable_LD_32000[] = {
  { 8000,  2000,  2000},
  {12000,  2000,  2000},
  {24000,  4250,  5200},
  {32000,  8400,  9000},
  {40000,  9400,  11300},
  {48000,  11900, 13700},
  {64000,  14800, 16000},
  {76000,  16000, 16000},
  {360001, 16000, 16000}
};

static const BANDWIDTH_TAB bandWidthTable_LD_44100[] = {
  { 8000,  2000,  2000},
  {24000,  2000,  2000},
  {32000,  4400,  5700},
  {40000,  7400,  8800},
  {48000,  9000,  10700},
  {56000,  11000, 12900},
  {64000,  14400, 15500},
  {80000,  16000, 16200},
  {96000,  16500, 16000},
  {128000, 16000, 16000},
  {360001, 16000, 16000}
};

static const BANDWIDTH_TAB bandWidthTable_LD_48000[] = {
  { 8000,  2000,  2000},
  {24000,  2000,  2000},
  {32000,  4400,  5700},
  {40000,  7400,  8800},
  {48000,  9000,  10700},
  {56000,  11000, 12800},
  {64000,  14300, 15400},
  {80000,  16000, 16200},
  {96000,  16500, 16000},
  {128000, 16000, 16000},
  {360001, 16000, 16000}
};

typedef struct{
  AACENC_BITRATE_MODE bitrateMode;
  int bandWidthMono;
  int bandWidth2AndMoreChan;
} BANDWIDTH_TAB_VBR;

static const BANDWIDTH_TAB_VBR bandWidthTableVBR[]= {
  {AACENC_BR_MODE_CBR,        0,     0},
  {AACENC_BR_MODE_VBR_1,  13050, 13050},
  {AACENC_BR_MODE_VBR_2,  13050, 13050},
  {AACENC_BR_MODE_VBR_3,  14260, 14260},
  {AACENC_BR_MODE_VBR_4,  15500, 15500},
  {AACENC_BR_MODE_VBR_5,  48000, 48000},
  {AACENC_BR_MODE_SFR,        0,     0},
  {AACENC_BR_MODE_FF,         0,     0}

};

static INT GetBandwidthEntry(
            const INT frameLength,
            const INT sampleRate,
            const INT chanBitRate,
            const INT entryNo)
{
  INT bandwidth = -1;
  const BANDWIDTH_TAB *pBwTab = NULL;
  INT bwTabSize = 0;

  switch (frameLength) {
    case 960:
    case 1024:
      pBwTab = bandWidthTable;
      bwTabSize = sizeof(bandWidthTable)/sizeof(BANDWIDTH_TAB);
      break;
    case 480:
    case 512:
      switch (sampleRate) {
        case 8000:
        case 11025:
        case 12000:
        case 16000:
        case 22050:
          pBwTab = bandWidthTable_LD_22050;
          bwTabSize = sizeof(bandWidthTable_LD_22050)/sizeof(BANDWIDTH_TAB);
          break;
        case 24000:
          pBwTab = bandWidthTable_LD_24000;
          bwTabSize = sizeof(bandWidthTable_LD_24000)/sizeof(BANDWIDTH_TAB);
          break;
        case 32000:
          pBwTab = bandWidthTable_LD_32000;
          bwTabSize = sizeof(bandWidthTable_LD_32000)/sizeof(BANDWIDTH_TAB);
          break;
        case (44100):
          pBwTab = bandWidthTable_LD_44100;
          bwTabSize = sizeof(bandWidthTable_LD_44100)/sizeof(BANDWIDTH_TAB);
          break;
        case 48000:
        case 64000:
        case 88200:
        case 96000:
          pBwTab = bandWidthTable_LD_48000;
          bwTabSize = sizeof(bandWidthTable_LD_48000)/sizeof(BANDWIDTH_TAB);
          break;
      }
      break;
    default:
      pBwTab = NULL;
      bwTabSize = 0;
  }

  if (pBwTab!=NULL) {
    int i;
    for (i=0; i<bwTabSize-1; i++) {
      if (chanBitRate >= pBwTab[i].chanBitRate &&
          chanBitRate < pBwTab[i+1].chanBitRate)
      {
        switch (frameLength) {
          case 960:
          case 1024:
            bandwidth = (entryNo==0)
              ? pBwTab[i].bandWidthMono
              : pBwTab[i].bandWidth2AndMoreChan;
            break;
          case 480:
          case 512:
            {
              INT q_res = 0;
              INT startBw = (entryNo==0) ?  pBwTab[i  ].bandWidthMono : pBwTab[i  ].bandWidth2AndMoreChan;
              INT endBw =   (entryNo==0) ?  pBwTab[i+1].bandWidthMono : pBwTab[i+1].bandWidth2AndMoreChan;
              INT startBr = pBwTab[i].chanBitRate;
              INT endBr = pBwTab[i+1].chanBitRate;

              FIXP_DBL bwFac_fix = fDivNorm(chanBitRate-startBr, endBr-startBr, &q_res);
              bandwidth = (INT)scaleValue(fMult(bwFac_fix, (FIXP_DBL)(endBw-startBw)),q_res) + startBw;
            }
            break;
          default:
            bandwidth = -1;
        }
        break;
      } /* within bitrate range */
    }
  } /* pBwTab!=NULL */

  return bandwidth;
}


AAC_ENCODER_ERROR FDKaacEnc_DetermineBandWidth(INT* bandWidth,
                                               INT proposedBandWidth,
                                               INT bitrate,
                                               AACENC_BITRATE_MODE bitrateMode,
                                               INT sampleRate,
                                               INT frameLength,
                                               CHANNEL_MAPPING* cm,
                                               CHANNEL_MODE encoderMode)
{
  AAC_ENCODER_ERROR ErrorStatus = AAC_ENC_OK;
  //FIXP_DBL invBandWidthGain=FL2FXCONST_DBL(1.f);
  INT chanBitRate = bitrate/cm->nChannels;

  /* vbr */
  switch(bitrateMode){
  case AACENC_BR_MODE_VBR_1:
  case AACENC_BR_MODE_VBR_2:
  case AACENC_BR_MODE_VBR_3:
  case AACENC_BR_MODE_VBR_4:
  case AACENC_BR_MODE_VBR_5:
    if (proposedBandWidth != 0){
      /* use given bw */
      *bandWidth = proposedBandWidth;
    } else {
      /* take bw from table */
      switch(encoderMode){
      case MODE_1:
        *bandWidth = bandWidthTableVBR[bitrateMode].bandWidthMono;
        break;
      case MODE_2:
      case MODE_1_2:
      case MODE_1_2_1:
      case MODE_1_2_2:
      case MODE_1_2_2_1:
      case MODE_1_2_2_2_1:
        *bandWidth = bandWidthTableVBR[bitrateMode].bandWidth2AndMoreChan;
        break;
      default:
        return AAC_ENC_UNSUPPORTED_CHANNELCONFIG;
      }
    }
    break;
  case AACENC_BR_MODE_CBR:
  case AACENC_BR_MODE_SFR:
  case AACENC_BR_MODE_FF:

    /* bandwidth limiting */
    if (proposedBandWidth != 0) {
      *bandWidth = FDKmin(proposedBandWidth, FDKmin(20000, sampleRate>>1));
    }
    else { /* search reasonable bandwidth */

      int entryNo = 0;

      switch(encoderMode){
      case MODE_1:        /* mono      */
        entryNo = 0;      /* use mono bandwith settings */
        break;

      case MODE_2:        /* stereo    */
      case MODE_1_2:      /* sce + cpe */
      case MODE_1_2_1:    /* sce + cpe + sce */
      case MODE_1_2_2:    /* sce + cpe + cpe */
      case MODE_1_2_2_1:  /* (5.1) sce + cpe + cpe + lfe */
      case MODE_1_2_2_2_1: /* (7.1) sce + cpe + cpe + cpe + lfe */
        entryNo = 1;      /* use stereo bandwith settings */
        break;

      default:
        return AAC_ENC_UNSUPPORTED_CHANNELCONFIG;
      }

      *bandWidth = GetBandwidthEntry(
            frameLength,
            sampleRate,
            chanBitRate,
            entryNo);

      if (*bandWidth==-1) {
        ErrorStatus = AAC_ENC_INVALID_CHANNEL_BITRATE;
      }
    }
    break;
  default:
    *bandWidth = 0;
    return AAC_ENC_UNSUPPORTED_BITRATE_MODE;
  }

  *bandWidth = FDKmin(*bandWidth, sampleRate/2);

  return ErrorStatus;;
}