aacpsy.c 39 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025
  1. /*
  2. * AAC encoder psychoacoustic model
  3. * Copyright (C) 2008 Konstantin Shishkov
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * AAC encoder psychoacoustic model
  24. */
  25. #include "libavutil/attributes.h"
  26. #include "libavutil/ffmath.h"
  27. #include "avcodec.h"
  28. #include "aactab.h"
  29. #include "psymodel.h"
  30. /***********************************
  31. * TODOs:
  32. * try other bitrate controlling mechanism (maybe use ratecontrol.c?)
  33. * control quality for quality-based output
  34. **********************************/
  35. /**
  36. * constants for 3GPP AAC psychoacoustic model
  37. * @{
  38. */
  39. #define PSY_3GPP_THR_SPREAD_HI 1.5f // spreading factor for low-to-hi threshold spreading (15 dB/Bark)
  40. #define PSY_3GPP_THR_SPREAD_LOW 3.0f // spreading factor for hi-to-low threshold spreading (30 dB/Bark)
  41. /* spreading factor for low-to-hi energy spreading, long block, > 22kbps/channel (20dB/Bark) */
  42. #define PSY_3GPP_EN_SPREAD_HI_L1 2.0f
  43. /* spreading factor for low-to-hi energy spreading, long block, <= 22kbps/channel (15dB/Bark) */
  44. #define PSY_3GPP_EN_SPREAD_HI_L2 1.5f
  45. /* spreading factor for low-to-hi energy spreading, short block (15 dB/Bark) */
  46. #define PSY_3GPP_EN_SPREAD_HI_S 1.5f
  47. /* spreading factor for hi-to-low energy spreading, long block (30dB/Bark) */
  48. #define PSY_3GPP_EN_SPREAD_LOW_L 3.0f
  49. /* spreading factor for hi-to-low energy spreading, short block (20dB/Bark) */
  50. #define PSY_3GPP_EN_SPREAD_LOW_S 2.0f
  51. #define PSY_3GPP_RPEMIN 0.01f
  52. #define PSY_3GPP_RPELEV 2.0f
  53. #define PSY_3GPP_C1 3.0f /* log2(8) */
  54. #define PSY_3GPP_C2 1.3219281f /* log2(2.5) */
  55. #define PSY_3GPP_C3 0.55935729f /* 1 - C2 / C1 */
  56. #define PSY_SNR_1DB 7.9432821e-1f /* -1dB */
  57. #define PSY_SNR_25DB 3.1622776e-3f /* -25dB */
  58. #define PSY_3GPP_SAVE_SLOPE_L -0.46666667f
  59. #define PSY_3GPP_SAVE_SLOPE_S -0.36363637f
  60. #define PSY_3GPP_SAVE_ADD_L -0.84285712f
  61. #define PSY_3GPP_SAVE_ADD_S -0.75f
  62. #define PSY_3GPP_SPEND_SLOPE_L 0.66666669f
  63. #define PSY_3GPP_SPEND_SLOPE_S 0.81818181f
  64. #define PSY_3GPP_SPEND_ADD_L -0.35f
  65. #define PSY_3GPP_SPEND_ADD_S -0.26111111f
  66. #define PSY_3GPP_CLIP_LO_L 0.2f
  67. #define PSY_3GPP_CLIP_LO_S 0.2f
  68. #define PSY_3GPP_CLIP_HI_L 0.95f
  69. #define PSY_3GPP_CLIP_HI_S 0.75f
  70. #define PSY_3GPP_AH_THR_LONG 0.5f
  71. #define PSY_3GPP_AH_THR_SHORT 0.63f
  72. #define PSY_PE_FORGET_SLOPE 511
  73. enum {
  74. PSY_3GPP_AH_NONE,
  75. PSY_3GPP_AH_INACTIVE,
  76. PSY_3GPP_AH_ACTIVE
  77. };
  78. #define PSY_3GPP_BITS_TO_PE(bits) ((bits) * 1.18f)
  79. #define PSY_3GPP_PE_TO_BITS(bits) ((bits) / 1.18f)
  80. /* LAME psy model constants */
  81. #define PSY_LAME_FIR_LEN 21 ///< LAME psy model FIR order
  82. #define AAC_BLOCK_SIZE_LONG 1024 ///< long block size
  83. #define AAC_BLOCK_SIZE_SHORT 128 ///< short block size
  84. #define AAC_NUM_BLOCKS_SHORT 8 ///< number of blocks in a short sequence
  85. #define PSY_LAME_NUM_SUBBLOCKS 3 ///< Number of sub-blocks in each short block
  86. /**
  87. * @}
  88. */
  89. /**
  90. * information for single band used by 3GPP TS26.403-inspired psychoacoustic model
  91. */
  92. typedef struct AacPsyBand{
  93. float energy; ///< band energy
  94. float thr; ///< energy threshold
  95. float thr_quiet; ///< threshold in quiet
  96. float nz_lines; ///< number of non-zero spectral lines
  97. float active_lines; ///< number of active spectral lines
  98. float pe; ///< perceptual entropy
  99. float pe_const; ///< constant part of the PE calculation
  100. float norm_fac; ///< normalization factor for linearization
  101. int avoid_holes; ///< hole avoidance flag
  102. }AacPsyBand;
  103. /**
  104. * single/pair channel context for psychoacoustic model
  105. */
  106. typedef struct AacPsyChannel{
  107. AacPsyBand band[128]; ///< bands information
  108. AacPsyBand prev_band[128]; ///< bands information from the previous frame
  109. float win_energy; ///< sliding average of channel energy
  110. float iir_state[2]; ///< hi-pass IIR filter state
  111. uint8_t next_grouping; ///< stored grouping scheme for the next frame (in case of 8 short window sequence)
  112. enum WindowSequence next_window_seq; ///< window sequence to be used in the next frame
  113. /* LAME psy model specific members */
  114. float attack_threshold; ///< attack threshold for this channel
  115. float prev_energy_subshort[AAC_NUM_BLOCKS_SHORT * PSY_LAME_NUM_SUBBLOCKS];
  116. int prev_attack; ///< attack value for the last short block in the previous sequence
  117. }AacPsyChannel;
  118. /**
  119. * psychoacoustic model frame type-dependent coefficients
  120. */
  121. typedef struct AacPsyCoeffs{
  122. float ath; ///< absolute threshold of hearing per bands
  123. float barks; ///< Bark value for each spectral band in long frame
  124. float spread_low[2]; ///< spreading factor for low-to-high threshold spreading in long frame
  125. float spread_hi [2]; ///< spreading factor for high-to-low threshold spreading in long frame
  126. float min_snr; ///< minimal SNR
  127. }AacPsyCoeffs;
  128. /**
  129. * 3GPP TS26.403-inspired psychoacoustic model specific data
  130. */
  131. typedef struct AacPsyContext{
  132. int chan_bitrate; ///< bitrate per channel
  133. int frame_bits; ///< average bits per frame
  134. int fill_level; ///< bit reservoir fill level
  135. struct {
  136. float min; ///< minimum allowed PE for bit factor calculation
  137. float max; ///< maximum allowed PE for bit factor calculation
  138. float previous; ///< allowed PE of the previous frame
  139. float correction; ///< PE correction factor
  140. } pe;
  141. AacPsyCoeffs psy_coef[2][64];
  142. AacPsyChannel *ch;
  143. float global_quality; ///< normalized global quality taken from avctx
  144. }AacPsyContext;
  145. /**
  146. * LAME psy model preset struct
  147. */
  148. typedef struct PsyLamePreset {
  149. int quality; ///< Quality to map the rest of the vaules to.
  150. /* This is overloaded to be both kbps per channel in ABR mode, and
  151. * requested quality in constant quality mode.
  152. */
  153. float st_lrm; ///< short threshold for L, R, and M channels
  154. } PsyLamePreset;
  155. /**
  156. * LAME psy model preset table for ABR
  157. */
  158. static const PsyLamePreset psy_abr_map[] = {
  159. /* TODO: Tuning. These were taken from LAME. */
  160. /* kbps/ch st_lrm */
  161. { 8, 6.60},
  162. { 16, 6.60},
  163. { 24, 6.60},
  164. { 32, 6.60},
  165. { 40, 6.60},
  166. { 48, 6.60},
  167. { 56, 6.60},
  168. { 64, 6.40},
  169. { 80, 6.00},
  170. { 96, 5.60},
  171. {112, 5.20},
  172. {128, 5.20},
  173. {160, 5.20}
  174. };
  175. /**
  176. * LAME psy model preset table for constant quality
  177. */
  178. static const PsyLamePreset psy_vbr_map[] = {
  179. /* vbr_q st_lrm */
  180. { 0, 4.20},
  181. { 1, 4.20},
  182. { 2, 4.20},
  183. { 3, 4.20},
  184. { 4, 4.20},
  185. { 5, 4.20},
  186. { 6, 4.20},
  187. { 7, 4.20},
  188. { 8, 4.20},
  189. { 9, 4.20},
  190. {10, 4.20}
  191. };
  192. /**
  193. * LAME psy model FIR coefficient table
  194. */
  195. static const float psy_fir_coeffs[] = {
  196. -8.65163e-18 * 2, -0.00851586 * 2, -6.74764e-18 * 2, 0.0209036 * 2,
  197. -3.36639e-17 * 2, -0.0438162 * 2, -1.54175e-17 * 2, 0.0931738 * 2,
  198. -5.52212e-17 * 2, -0.313819 * 2
  199. };
  200. #if ARCH_MIPS
  201. # include "mips/aacpsy_mips.h"
  202. #endif /* ARCH_MIPS */
  203. /**
  204. * Calculate the ABR attack threshold from the above LAME psymodel table.
  205. */
  206. static float lame_calc_attack_threshold(int bitrate)
  207. {
  208. /* Assume max bitrate to start with */
  209. int lower_range = 12, upper_range = 12;
  210. int lower_range_kbps = psy_abr_map[12].quality;
  211. int upper_range_kbps = psy_abr_map[12].quality;
  212. int i;
  213. /* Determine which bitrates the value specified falls between.
  214. * If the loop ends without breaking our above assumption of 320kbps was correct.
  215. */
  216. for (i = 1; i < 13; i++) {
  217. if (FFMAX(bitrate, psy_abr_map[i].quality) != bitrate) {
  218. upper_range = i;
  219. upper_range_kbps = psy_abr_map[i ].quality;
  220. lower_range = i - 1;
  221. lower_range_kbps = psy_abr_map[i - 1].quality;
  222. break; /* Upper range found */
  223. }
  224. }
  225. /* Determine which range the value specified is closer to */
  226. if ((upper_range_kbps - bitrate) > (bitrate - lower_range_kbps))
  227. return psy_abr_map[lower_range].st_lrm;
  228. return psy_abr_map[upper_range].st_lrm;
  229. }
  230. /**
  231. * LAME psy model specific initialization
  232. */
  233. static av_cold void lame_window_init(AacPsyContext *ctx, AVCodecContext *avctx)
  234. {
  235. int i, j;
  236. for (i = 0; i < avctx->channels; i++) {
  237. AacPsyChannel *pch = &ctx->ch[i];
  238. if (avctx->flags & AV_CODEC_FLAG_QSCALE)
  239. pch->attack_threshold = psy_vbr_map[avctx->global_quality / FF_QP2LAMBDA].st_lrm;
  240. else
  241. pch->attack_threshold = lame_calc_attack_threshold(avctx->bit_rate / avctx->channels / 1000);
  242. for (j = 0; j < AAC_NUM_BLOCKS_SHORT * PSY_LAME_NUM_SUBBLOCKS; j++)
  243. pch->prev_energy_subshort[j] = 10.0f;
  244. }
  245. }
  246. /**
  247. * Calculate Bark value for given line.
  248. */
  249. static av_cold float calc_bark(float f)
  250. {
  251. return 13.3f * atanf(0.00076f * f) + 3.5f * atanf((f / 7500.0f) * (f / 7500.0f));
  252. }
  253. #define ATH_ADD 4
  254. /**
  255. * Calculate ATH value for given frequency.
  256. * Borrowed from Lame.
  257. */
  258. static av_cold float ath(float f, float add)
  259. {
  260. f /= 1000.0f;
  261. return 3.64 * pow(f, -0.8)
  262. - 6.8 * exp(-0.6 * (f - 3.4) * (f - 3.4))
  263. + 6.0 * exp(-0.15 * (f - 8.7) * (f - 8.7))
  264. + (0.6 + 0.04 * add) * 0.001 * f * f * f * f;
  265. }
  266. static av_cold int psy_3gpp_init(FFPsyContext *ctx) {
  267. AacPsyContext *pctx;
  268. float bark;
  269. int i, j, g, start;
  270. float prev, minscale, minath, minsnr, pe_min;
  271. int chan_bitrate = ctx->avctx->bit_rate / ((ctx->avctx->flags & AV_CODEC_FLAG_QSCALE) ? 2.0f : ctx->avctx->channels);
  272. const int bandwidth = ctx->cutoff ? ctx->cutoff : AAC_CUTOFF(ctx->avctx);
  273. const float num_bark = calc_bark((float)bandwidth);
  274. ctx->model_priv_data = av_mallocz(sizeof(AacPsyContext));
  275. if (!ctx->model_priv_data)
  276. return AVERROR(ENOMEM);
  277. pctx = ctx->model_priv_data;
  278. pctx->global_quality = (ctx->avctx->global_quality ? ctx->avctx->global_quality : 120) * 0.01f;
  279. if (ctx->avctx->flags & AV_CODEC_FLAG_QSCALE) {
  280. /* Use the target average bitrate to compute spread parameters */
  281. chan_bitrate = (int)(chan_bitrate / 120.0 * (ctx->avctx->global_quality ? ctx->avctx->global_quality : 120));
  282. }
  283. pctx->chan_bitrate = chan_bitrate;
  284. pctx->frame_bits = FFMIN(2560, chan_bitrate * AAC_BLOCK_SIZE_LONG / ctx->avctx->sample_rate);
  285. pctx->pe.min = 8.0f * AAC_BLOCK_SIZE_LONG * bandwidth / (ctx->avctx->sample_rate * 2.0f);
  286. pctx->pe.max = 12.0f * AAC_BLOCK_SIZE_LONG * bandwidth / (ctx->avctx->sample_rate * 2.0f);
  287. ctx->bitres.size = 6144 - pctx->frame_bits;
  288. ctx->bitres.size -= ctx->bitres.size % 8;
  289. pctx->fill_level = ctx->bitres.size;
  290. minath = ath(3410 - 0.733 * ATH_ADD, ATH_ADD);
  291. for (j = 0; j < 2; j++) {
  292. AacPsyCoeffs *coeffs = pctx->psy_coef[j];
  293. const uint8_t *band_sizes = ctx->bands[j];
  294. float line_to_frequency = ctx->avctx->sample_rate / (j ? 256.f : 2048.0f);
  295. float avg_chan_bits = chan_bitrate * (j ? 128.0f : 1024.0f) / ctx->avctx->sample_rate;
  296. /* reference encoder uses 2.4% here instead of 60% like the spec says */
  297. float bark_pe = 0.024f * PSY_3GPP_BITS_TO_PE(avg_chan_bits) / num_bark;
  298. float en_spread_low = j ? PSY_3GPP_EN_SPREAD_LOW_S : PSY_3GPP_EN_SPREAD_LOW_L;
  299. /* High energy spreading for long blocks <= 22kbps/channel and short blocks are the same. */
  300. float en_spread_hi = (j || (chan_bitrate <= 22.0f)) ? PSY_3GPP_EN_SPREAD_HI_S : PSY_3GPP_EN_SPREAD_HI_L1;
  301. i = 0;
  302. prev = 0.0;
  303. for (g = 0; g < ctx->num_bands[j]; g++) {
  304. i += band_sizes[g];
  305. bark = calc_bark((i-1) * line_to_frequency);
  306. coeffs[g].barks = (bark + prev) / 2.0;
  307. prev = bark;
  308. }
  309. for (g = 0; g < ctx->num_bands[j] - 1; g++) {
  310. AacPsyCoeffs *coeff = &coeffs[g];
  311. float bark_width = coeffs[g+1].barks - coeffs->barks;
  312. coeff->spread_low[0] = ff_exp10(-bark_width * PSY_3GPP_THR_SPREAD_LOW);
  313. coeff->spread_hi [0] = ff_exp10(-bark_width * PSY_3GPP_THR_SPREAD_HI);
  314. coeff->spread_low[1] = ff_exp10(-bark_width * en_spread_low);
  315. coeff->spread_hi [1] = ff_exp10(-bark_width * en_spread_hi);
  316. pe_min = bark_pe * bark_width;
  317. minsnr = exp2(pe_min / band_sizes[g]) - 1.5f;
  318. coeff->min_snr = av_clipf(1.0f / minsnr, PSY_SNR_25DB, PSY_SNR_1DB);
  319. }
  320. start = 0;
  321. for (g = 0; g < ctx->num_bands[j]; g++) {
  322. minscale = ath(start * line_to_frequency, ATH_ADD);
  323. for (i = 1; i < band_sizes[g]; i++)
  324. minscale = FFMIN(minscale, ath((start + i) * line_to_frequency, ATH_ADD));
  325. coeffs[g].ath = minscale - minath;
  326. start += band_sizes[g];
  327. }
  328. }
  329. pctx->ch = av_mallocz_array(ctx->avctx->channels, sizeof(AacPsyChannel));
  330. if (!pctx->ch) {
  331. av_freep(&ctx->model_priv_data);
  332. return AVERROR(ENOMEM);
  333. }
  334. lame_window_init(pctx, ctx->avctx);
  335. return 0;
  336. }
  337. /**
  338. * IIR filter used in block switching decision
  339. */
  340. static float iir_filter(int in, float state[2])
  341. {
  342. float ret;
  343. ret = 0.7548f * (in - state[0]) + 0.5095f * state[1];
  344. state[0] = in;
  345. state[1] = ret;
  346. return ret;
  347. }
  348. /**
  349. * window grouping information stored as bits (0 - new group, 1 - group continues)
  350. */
  351. static const uint8_t window_grouping[9] = {
  352. 0xB6, 0x6C, 0xD8, 0xB2, 0x66, 0xC6, 0x96, 0x36, 0x36
  353. };
  354. /**
  355. * Tell encoder which window types to use.
  356. * @see 3GPP TS26.403 5.4.1 "Blockswitching"
  357. */
  358. static av_unused FFPsyWindowInfo psy_3gpp_window(FFPsyContext *ctx,
  359. const int16_t *audio,
  360. const int16_t *la,
  361. int channel, int prev_type)
  362. {
  363. int i, j;
  364. int br = ((AacPsyContext*)ctx->model_priv_data)->chan_bitrate;
  365. int attack_ratio = br <= 16000 ? 18 : 10;
  366. AacPsyContext *pctx = (AacPsyContext*) ctx->model_priv_data;
  367. AacPsyChannel *pch = &pctx->ch[channel];
  368. uint8_t grouping = 0;
  369. int next_type = pch->next_window_seq;
  370. FFPsyWindowInfo wi = { { 0 } };
  371. if (la) {
  372. float s[8], v;
  373. int switch_to_eight = 0;
  374. float sum = 0.0, sum2 = 0.0;
  375. int attack_n = 0;
  376. int stay_short = 0;
  377. for (i = 0; i < 8; i++) {
  378. for (j = 0; j < 128; j++) {
  379. v = iir_filter(la[i*128+j], pch->iir_state);
  380. sum += v*v;
  381. }
  382. s[i] = sum;
  383. sum2 += sum;
  384. }
  385. for (i = 0; i < 8; i++) {
  386. if (s[i] > pch->win_energy * attack_ratio) {
  387. attack_n = i + 1;
  388. switch_to_eight = 1;
  389. break;
  390. }
  391. }
  392. pch->win_energy = pch->win_energy*7/8 + sum2/64;
  393. wi.window_type[1] = prev_type;
  394. switch (prev_type) {
  395. case ONLY_LONG_SEQUENCE:
  396. wi.window_type[0] = switch_to_eight ? LONG_START_SEQUENCE : ONLY_LONG_SEQUENCE;
  397. next_type = switch_to_eight ? EIGHT_SHORT_SEQUENCE : ONLY_LONG_SEQUENCE;
  398. break;
  399. case LONG_START_SEQUENCE:
  400. wi.window_type[0] = EIGHT_SHORT_SEQUENCE;
  401. grouping = pch->next_grouping;
  402. next_type = switch_to_eight ? EIGHT_SHORT_SEQUENCE : LONG_STOP_SEQUENCE;
  403. break;
  404. case LONG_STOP_SEQUENCE:
  405. wi.window_type[0] = switch_to_eight ? LONG_START_SEQUENCE : ONLY_LONG_SEQUENCE;
  406. next_type = switch_to_eight ? EIGHT_SHORT_SEQUENCE : ONLY_LONG_SEQUENCE;
  407. break;
  408. case EIGHT_SHORT_SEQUENCE:
  409. stay_short = next_type == EIGHT_SHORT_SEQUENCE || switch_to_eight;
  410. wi.window_type[0] = stay_short ? EIGHT_SHORT_SEQUENCE : LONG_STOP_SEQUENCE;
  411. grouping = next_type == EIGHT_SHORT_SEQUENCE ? pch->next_grouping : 0;
  412. next_type = switch_to_eight ? EIGHT_SHORT_SEQUENCE : LONG_STOP_SEQUENCE;
  413. break;
  414. }
  415. pch->next_grouping = window_grouping[attack_n];
  416. pch->next_window_seq = next_type;
  417. } else {
  418. for (i = 0; i < 3; i++)
  419. wi.window_type[i] = prev_type;
  420. grouping = (prev_type == EIGHT_SHORT_SEQUENCE) ? window_grouping[0] : 0;
  421. }
  422. wi.window_shape = 1;
  423. if (wi.window_type[0] != EIGHT_SHORT_SEQUENCE) {
  424. wi.num_windows = 1;
  425. wi.grouping[0] = 1;
  426. } else {
  427. int lastgrp = 0;
  428. wi.num_windows = 8;
  429. for (i = 0; i < 8; i++) {
  430. if (!((grouping >> i) & 1))
  431. lastgrp = i;
  432. wi.grouping[lastgrp]++;
  433. }
  434. }
  435. return wi;
  436. }
  437. /* 5.6.1.2 "Calculation of Bit Demand" */
  438. static int calc_bit_demand(AacPsyContext *ctx, float pe, int bits, int size,
  439. int short_window)
  440. {
  441. const float bitsave_slope = short_window ? PSY_3GPP_SAVE_SLOPE_S : PSY_3GPP_SAVE_SLOPE_L;
  442. const float bitsave_add = short_window ? PSY_3GPP_SAVE_ADD_S : PSY_3GPP_SAVE_ADD_L;
  443. const float bitspend_slope = short_window ? PSY_3GPP_SPEND_SLOPE_S : PSY_3GPP_SPEND_SLOPE_L;
  444. const float bitspend_add = short_window ? PSY_3GPP_SPEND_ADD_S : PSY_3GPP_SPEND_ADD_L;
  445. const float clip_low = short_window ? PSY_3GPP_CLIP_LO_S : PSY_3GPP_CLIP_LO_L;
  446. const float clip_high = short_window ? PSY_3GPP_CLIP_HI_S : PSY_3GPP_CLIP_HI_L;
  447. float clipped_pe, bit_save, bit_spend, bit_factor, fill_level, forgetful_min_pe;
  448. ctx->fill_level += ctx->frame_bits - bits;
  449. ctx->fill_level = av_clip(ctx->fill_level, 0, size);
  450. fill_level = av_clipf((float)ctx->fill_level / size, clip_low, clip_high);
  451. clipped_pe = av_clipf(pe, ctx->pe.min, ctx->pe.max);
  452. bit_save = (fill_level + bitsave_add) * bitsave_slope;
  453. assert(bit_save <= 0.3f && bit_save >= -0.05000001f);
  454. bit_spend = (fill_level + bitspend_add) * bitspend_slope;
  455. assert(bit_spend <= 0.5f && bit_spend >= -0.1f);
  456. /* The bit factor graph in the spec is obviously incorrect.
  457. * bit_spend + ((bit_spend - bit_spend))...
  458. * The reference encoder subtracts everything from 1, but also seems incorrect.
  459. * 1 - bit_save + ((bit_spend + bit_save))...
  460. * Hopefully below is correct.
  461. */
  462. bit_factor = 1.0f - bit_save + ((bit_spend - bit_save) / (ctx->pe.max - ctx->pe.min)) * (clipped_pe - ctx->pe.min);
  463. /* NOTE: The reference encoder attempts to center pe max/min around the current pe.
  464. * Here we do that by slowly forgetting pe.min when pe stays in a range that makes
  465. * it unlikely (ie: above the mean)
  466. */
  467. ctx->pe.max = FFMAX(pe, ctx->pe.max);
  468. forgetful_min_pe = ((ctx->pe.min * PSY_PE_FORGET_SLOPE)
  469. + FFMAX(ctx->pe.min, pe * (pe / ctx->pe.max))) / (PSY_PE_FORGET_SLOPE + 1);
  470. ctx->pe.min = FFMIN(pe, forgetful_min_pe);
  471. /* NOTE: allocate a minimum of 1/8th average frame bits, to avoid
  472. * reservoir starvation from producing zero-bit frames
  473. */
  474. return FFMIN(
  475. ctx->frame_bits * bit_factor,
  476. FFMAX(ctx->frame_bits + size - bits, ctx->frame_bits / 8));
  477. }
  478. static float calc_pe_3gpp(AacPsyBand *band)
  479. {
  480. float pe, a;
  481. band->pe = 0.0f;
  482. band->pe_const = 0.0f;
  483. band->active_lines = 0.0f;
  484. if (band->energy > band->thr) {
  485. a = log2f(band->energy);
  486. pe = a - log2f(band->thr);
  487. band->active_lines = band->nz_lines;
  488. if (pe < PSY_3GPP_C1) {
  489. pe = pe * PSY_3GPP_C3 + PSY_3GPP_C2;
  490. a = a * PSY_3GPP_C3 + PSY_3GPP_C2;
  491. band->active_lines *= PSY_3GPP_C3;
  492. }
  493. band->pe = pe * band->nz_lines;
  494. band->pe_const = a * band->nz_lines;
  495. }
  496. return band->pe;
  497. }
  498. static float calc_reduction_3gpp(float a, float desired_pe, float pe,
  499. float active_lines)
  500. {
  501. float thr_avg, reduction;
  502. if(active_lines == 0.0)
  503. return 0;
  504. thr_avg = exp2f((a - pe) / (4.0f * active_lines));
  505. reduction = exp2f((a - desired_pe) / (4.0f * active_lines)) - thr_avg;
  506. return FFMAX(reduction, 0.0f);
  507. }
  508. static float calc_reduced_thr_3gpp(AacPsyBand *band, float min_snr,
  509. float reduction)
  510. {
  511. float thr = band->thr;
  512. if (band->energy > thr) {
  513. thr = sqrtf(thr);
  514. thr = sqrtf(thr) + reduction;
  515. thr *= thr;
  516. thr *= thr;
  517. /* This deviates from the 3GPP spec to match the reference encoder.
  518. * It performs min(thr_reduced, max(thr, energy/min_snr)) only for bands
  519. * that have hole avoidance on (active or inactive). It always reduces the
  520. * threshold of bands with hole avoidance off.
  521. */
  522. if (thr > band->energy * min_snr && band->avoid_holes != PSY_3GPP_AH_NONE) {
  523. thr = FFMAX(band->thr, band->energy * min_snr);
  524. band->avoid_holes = PSY_3GPP_AH_ACTIVE;
  525. }
  526. }
  527. return thr;
  528. }
  529. #ifndef calc_thr_3gpp
  530. static void calc_thr_3gpp(const FFPsyWindowInfo *wi, const int num_bands, AacPsyChannel *pch,
  531. const uint8_t *band_sizes, const float *coefs, const int cutoff)
  532. {
  533. int i, w, g;
  534. int start = 0, wstart = 0;
  535. for (w = 0; w < wi->num_windows*16; w += 16) {
  536. wstart = 0;
  537. for (g = 0; g < num_bands; g++) {
  538. AacPsyBand *band = &pch->band[w+g];
  539. float form_factor = 0.0f;
  540. float Temp;
  541. band->energy = 0.0f;
  542. if (wstart < cutoff) {
  543. for (i = 0; i < band_sizes[g]; i++) {
  544. band->energy += coefs[start+i] * coefs[start+i];
  545. form_factor += sqrtf(fabs(coefs[start+i]));
  546. }
  547. }
  548. Temp = band->energy > 0 ? sqrtf((float)band_sizes[g] / band->energy) : 0;
  549. band->thr = band->energy * 0.001258925f;
  550. band->nz_lines = form_factor * sqrtf(Temp);
  551. start += band_sizes[g];
  552. wstart += band_sizes[g];
  553. }
  554. }
  555. }
  556. #endif /* calc_thr_3gpp */
  557. #ifndef psy_hp_filter
  558. static void psy_hp_filter(const float *firbuf, float *hpfsmpl, const float *psy_fir_coeffs)
  559. {
  560. int i, j;
  561. for (i = 0; i < AAC_BLOCK_SIZE_LONG; i++) {
  562. float sum1, sum2;
  563. sum1 = firbuf[i + (PSY_LAME_FIR_LEN - 1) / 2];
  564. sum2 = 0.0;
  565. for (j = 0; j < ((PSY_LAME_FIR_LEN - 1) / 2) - 1; j += 2) {
  566. sum1 += psy_fir_coeffs[j] * (firbuf[i + j] + firbuf[i + PSY_LAME_FIR_LEN - j]);
  567. sum2 += psy_fir_coeffs[j + 1] * (firbuf[i + j + 1] + firbuf[i + PSY_LAME_FIR_LEN - j - 1]);
  568. }
  569. /* NOTE: The LAME psymodel expects it's input in the range -32768 to 32768.
  570. * Tuning this for normalized floats would be difficult. */
  571. hpfsmpl[i] = (sum1 + sum2) * 32768.0f;
  572. }
  573. }
  574. #endif /* psy_hp_filter */
  575. /**
  576. * Calculate band thresholds as suggested in 3GPP TS26.403
  577. */
  578. static void psy_3gpp_analyze_channel(FFPsyContext *ctx, int channel,
  579. const float *coefs, const FFPsyWindowInfo *wi)
  580. {
  581. AacPsyContext *pctx = (AacPsyContext*) ctx->model_priv_data;
  582. AacPsyChannel *pch = &pctx->ch[channel];
  583. int i, w, g;
  584. float desired_bits, desired_pe, delta_pe, reduction= NAN, spread_en[128] = {0};
  585. float a = 0.0f, active_lines = 0.0f, norm_fac = 0.0f;
  586. float pe = pctx->chan_bitrate > 32000 ? 0.0f : FFMAX(50.0f, 100.0f - pctx->chan_bitrate * 100.0f / 32000.0f);
  587. const int num_bands = ctx->num_bands[wi->num_windows == 8];
  588. const uint8_t *band_sizes = ctx->bands[wi->num_windows == 8];
  589. AacPsyCoeffs *coeffs = pctx->psy_coef[wi->num_windows == 8];
  590. const float avoid_hole_thr = wi->num_windows == 8 ? PSY_3GPP_AH_THR_SHORT : PSY_3GPP_AH_THR_LONG;
  591. const int bandwidth = ctx->cutoff ? ctx->cutoff : AAC_CUTOFF(ctx->avctx);
  592. const int cutoff = bandwidth * 2048 / wi->num_windows / ctx->avctx->sample_rate;
  593. //calculate energies, initial thresholds and related values - 5.4.2 "Threshold Calculation"
  594. calc_thr_3gpp(wi, num_bands, pch, band_sizes, coefs, cutoff);
  595. //modify thresholds and energies - spread, threshold in quiet, pre-echo control
  596. for (w = 0; w < wi->num_windows*16; w += 16) {
  597. AacPsyBand *bands = &pch->band[w];
  598. /* 5.4.2.3 "Spreading" & 5.4.3 "Spread Energy Calculation" */
  599. spread_en[0] = bands[0].energy;
  600. for (g = 1; g < num_bands; g++) {
  601. bands[g].thr = FFMAX(bands[g].thr, bands[g-1].thr * coeffs[g].spread_hi[0]);
  602. spread_en[w+g] = FFMAX(bands[g].energy, spread_en[w+g-1] * coeffs[g].spread_hi[1]);
  603. }
  604. for (g = num_bands - 2; g >= 0; g--) {
  605. bands[g].thr = FFMAX(bands[g].thr, bands[g+1].thr * coeffs[g].spread_low[0]);
  606. spread_en[w+g] = FFMAX(spread_en[w+g], spread_en[w+g+1] * coeffs[g].spread_low[1]);
  607. }
  608. //5.4.2.4 "Threshold in quiet"
  609. for (g = 0; g < num_bands; g++) {
  610. AacPsyBand *band = &bands[g];
  611. band->thr_quiet = band->thr = FFMAX(band->thr, coeffs[g].ath);
  612. //5.4.2.5 "Pre-echo control"
  613. if (!(wi->window_type[0] == LONG_STOP_SEQUENCE || (!w && wi->window_type[1] == LONG_START_SEQUENCE)))
  614. band->thr = FFMAX(PSY_3GPP_RPEMIN*band->thr, FFMIN(band->thr,
  615. PSY_3GPP_RPELEV*pch->prev_band[w+g].thr_quiet));
  616. /* 5.6.1.3.1 "Preparatory steps of the perceptual entropy calculation" */
  617. pe += calc_pe_3gpp(band);
  618. a += band->pe_const;
  619. active_lines += band->active_lines;
  620. /* 5.6.1.3.3 "Selection of the bands for avoidance of holes" */
  621. if (spread_en[w+g] * avoid_hole_thr > band->energy || coeffs[g].min_snr > 1.0f)
  622. band->avoid_holes = PSY_3GPP_AH_NONE;
  623. else
  624. band->avoid_holes = PSY_3GPP_AH_INACTIVE;
  625. }
  626. }
  627. /* 5.6.1.3.2 "Calculation of the desired perceptual entropy" */
  628. ctx->ch[channel].entropy = pe;
  629. if (ctx->avctx->flags & AV_CODEC_FLAG_QSCALE) {
  630. /* (2.5 * 120) achieves almost transparent rate, and we want to give
  631. * ample room downwards, so we make that equivalent to QSCALE=2.4
  632. */
  633. desired_pe = pe * (ctx->avctx->global_quality ? ctx->avctx->global_quality : 120) / (2 * 2.5f * 120.0f);
  634. desired_bits = FFMIN(2560, PSY_3GPP_PE_TO_BITS(desired_pe));
  635. desired_pe = PSY_3GPP_BITS_TO_PE(desired_bits); // reflect clipping
  636. /* PE slope smoothing */
  637. if (ctx->bitres.bits > 0) {
  638. desired_bits = FFMIN(2560, PSY_3GPP_PE_TO_BITS(desired_pe));
  639. desired_pe = PSY_3GPP_BITS_TO_PE(desired_bits); // reflect clipping
  640. }
  641. pctx->pe.max = FFMAX(pe, pctx->pe.max);
  642. pctx->pe.min = FFMIN(pe, pctx->pe.min);
  643. } else {
  644. desired_bits = calc_bit_demand(pctx, pe, ctx->bitres.bits, ctx->bitres.size, wi->num_windows == 8);
  645. desired_pe = PSY_3GPP_BITS_TO_PE(desired_bits);
  646. /* NOTE: PE correction is kept simple. During initial testing it had very
  647. * little effect on the final bitrate. Probably a good idea to come
  648. * back and do more testing later.
  649. */
  650. if (ctx->bitres.bits > 0)
  651. desired_pe *= av_clipf(pctx->pe.previous / PSY_3GPP_BITS_TO_PE(ctx->bitres.bits),
  652. 0.85f, 1.15f);
  653. }
  654. pctx->pe.previous = PSY_3GPP_BITS_TO_PE(desired_bits);
  655. ctx->bitres.alloc = desired_bits;
  656. if (desired_pe < pe) {
  657. /* 5.6.1.3.4 "First Estimation of the reduction value" */
  658. for (w = 0; w < wi->num_windows*16; w += 16) {
  659. reduction = calc_reduction_3gpp(a, desired_pe, pe, active_lines);
  660. pe = 0.0f;
  661. a = 0.0f;
  662. active_lines = 0.0f;
  663. for (g = 0; g < num_bands; g++) {
  664. AacPsyBand *band = &pch->band[w+g];
  665. band->thr = calc_reduced_thr_3gpp(band, coeffs[g].min_snr, reduction);
  666. /* recalculate PE */
  667. pe += calc_pe_3gpp(band);
  668. a += band->pe_const;
  669. active_lines += band->active_lines;
  670. }
  671. }
  672. /* 5.6.1.3.5 "Second Estimation of the reduction value" */
  673. for (i = 0; i < 2; i++) {
  674. float pe_no_ah = 0.0f, desired_pe_no_ah;
  675. active_lines = a = 0.0f;
  676. for (w = 0; w < wi->num_windows*16; w += 16) {
  677. for (g = 0; g < num_bands; g++) {
  678. AacPsyBand *band = &pch->band[w+g];
  679. if (band->avoid_holes != PSY_3GPP_AH_ACTIVE) {
  680. pe_no_ah += band->pe;
  681. a += band->pe_const;
  682. active_lines += band->active_lines;
  683. }
  684. }
  685. }
  686. desired_pe_no_ah = FFMAX(desired_pe - (pe - pe_no_ah), 0.0f);
  687. if (active_lines > 0.0f)
  688. reduction = calc_reduction_3gpp(a, desired_pe_no_ah, pe_no_ah, active_lines);
  689. pe = 0.0f;
  690. for (w = 0; w < wi->num_windows*16; w += 16) {
  691. for (g = 0; g < num_bands; g++) {
  692. AacPsyBand *band = &pch->band[w+g];
  693. if (active_lines > 0.0f)
  694. band->thr = calc_reduced_thr_3gpp(band, coeffs[g].min_snr, reduction);
  695. pe += calc_pe_3gpp(band);
  696. if (band->thr > 0.0f)
  697. band->norm_fac = band->active_lines / band->thr;
  698. else
  699. band->norm_fac = 0.0f;
  700. norm_fac += band->norm_fac;
  701. }
  702. }
  703. delta_pe = desired_pe - pe;
  704. if (fabs(delta_pe) > 0.05f * desired_pe)
  705. break;
  706. }
  707. if (pe < 1.15f * desired_pe) {
  708. /* 6.6.1.3.6 "Final threshold modification by linearization" */
  709. norm_fac = 1.0f / norm_fac;
  710. for (w = 0; w < wi->num_windows*16; w += 16) {
  711. for (g = 0; g < num_bands; g++) {
  712. AacPsyBand *band = &pch->band[w+g];
  713. if (band->active_lines > 0.5f) {
  714. float delta_sfb_pe = band->norm_fac * norm_fac * delta_pe;
  715. float thr = band->thr;
  716. thr *= exp2f(delta_sfb_pe / band->active_lines);
  717. if (thr > coeffs[g].min_snr * band->energy && band->avoid_holes == PSY_3GPP_AH_INACTIVE)
  718. thr = FFMAX(band->thr, coeffs[g].min_snr * band->energy);
  719. band->thr = thr;
  720. }
  721. }
  722. }
  723. } else {
  724. /* 5.6.1.3.7 "Further perceptual entropy reduction" */
  725. g = num_bands;
  726. while (pe > desired_pe && g--) {
  727. for (w = 0; w < wi->num_windows*16; w+= 16) {
  728. AacPsyBand *band = &pch->band[w+g];
  729. if (band->avoid_holes != PSY_3GPP_AH_NONE && coeffs[g].min_snr < PSY_SNR_1DB) {
  730. coeffs[g].min_snr = PSY_SNR_1DB;
  731. band->thr = band->energy * PSY_SNR_1DB;
  732. pe += band->active_lines * 1.5f - band->pe;
  733. }
  734. }
  735. }
  736. /* TODO: allow more holes (unused without mid/side) */
  737. }
  738. }
  739. for (w = 0; w < wi->num_windows*16; w += 16) {
  740. for (g = 0; g < num_bands; g++) {
  741. AacPsyBand *band = &pch->band[w+g];
  742. FFPsyBand *psy_band = &ctx->ch[channel].psy_bands[w+g];
  743. psy_band->threshold = band->thr;
  744. psy_band->energy = band->energy;
  745. psy_band->spread = band->active_lines * 2.0f / band_sizes[g];
  746. psy_band->bits = PSY_3GPP_PE_TO_BITS(band->pe);
  747. }
  748. }
  749. memcpy(pch->prev_band, pch->band, sizeof(pch->band));
  750. }
  751. static void psy_3gpp_analyze(FFPsyContext *ctx, int channel,
  752. const float **coeffs, const FFPsyWindowInfo *wi)
  753. {
  754. int ch;
  755. FFPsyChannelGroup *group = ff_psy_find_group(ctx, channel);
  756. for (ch = 0; ch < group->num_ch; ch++)
  757. psy_3gpp_analyze_channel(ctx, channel + ch, coeffs[ch], &wi[ch]);
  758. }
  759. static av_cold void psy_3gpp_end(FFPsyContext *apc)
  760. {
  761. AacPsyContext *pctx = (AacPsyContext*) apc->model_priv_data;
  762. av_freep(&pctx->ch);
  763. av_freep(&apc->model_priv_data);
  764. }
  765. static void lame_apply_block_type(AacPsyChannel *ctx, FFPsyWindowInfo *wi, int uselongblock)
  766. {
  767. int blocktype = ONLY_LONG_SEQUENCE;
  768. if (uselongblock) {
  769. if (ctx->next_window_seq == EIGHT_SHORT_SEQUENCE)
  770. blocktype = LONG_STOP_SEQUENCE;
  771. } else {
  772. blocktype = EIGHT_SHORT_SEQUENCE;
  773. if (ctx->next_window_seq == ONLY_LONG_SEQUENCE)
  774. ctx->next_window_seq = LONG_START_SEQUENCE;
  775. if (ctx->next_window_seq == LONG_STOP_SEQUENCE)
  776. ctx->next_window_seq = EIGHT_SHORT_SEQUENCE;
  777. }
  778. wi->window_type[0] = ctx->next_window_seq;
  779. ctx->next_window_seq = blocktype;
  780. }
  781. static FFPsyWindowInfo psy_lame_window(FFPsyContext *ctx, const float *audio,
  782. const float *la, int channel, int prev_type)
  783. {
  784. AacPsyContext *pctx = (AacPsyContext*) ctx->model_priv_data;
  785. AacPsyChannel *pch = &pctx->ch[channel];
  786. int grouping = 0;
  787. int uselongblock = 1;
  788. int attacks[AAC_NUM_BLOCKS_SHORT + 1] = { 0 };
  789. int i;
  790. FFPsyWindowInfo wi = { { 0 } };
  791. if (la) {
  792. float hpfsmpl[AAC_BLOCK_SIZE_LONG];
  793. const float *pf = hpfsmpl;
  794. float attack_intensity[(AAC_NUM_BLOCKS_SHORT + 1) * PSY_LAME_NUM_SUBBLOCKS];
  795. float energy_subshort[(AAC_NUM_BLOCKS_SHORT + 1) * PSY_LAME_NUM_SUBBLOCKS];
  796. float energy_short[AAC_NUM_BLOCKS_SHORT + 1] = { 0 };
  797. const float *firbuf = la + (AAC_BLOCK_SIZE_SHORT/4 - PSY_LAME_FIR_LEN);
  798. int att_sum = 0;
  799. /* LAME comment: apply high pass filter of fs/4 */
  800. psy_hp_filter(firbuf, hpfsmpl, psy_fir_coeffs);
  801. /* Calculate the energies of each sub-shortblock */
  802. for (i = 0; i < PSY_LAME_NUM_SUBBLOCKS; i++) {
  803. energy_subshort[i] = pch->prev_energy_subshort[i + ((AAC_NUM_BLOCKS_SHORT - 1) * PSY_LAME_NUM_SUBBLOCKS)];
  804. assert(pch->prev_energy_subshort[i + ((AAC_NUM_BLOCKS_SHORT - 2) * PSY_LAME_NUM_SUBBLOCKS + 1)] > 0);
  805. attack_intensity[i] = energy_subshort[i] / pch->prev_energy_subshort[i + ((AAC_NUM_BLOCKS_SHORT - 2) * PSY_LAME_NUM_SUBBLOCKS + 1)];
  806. energy_short[0] += energy_subshort[i];
  807. }
  808. for (i = 0; i < AAC_NUM_BLOCKS_SHORT * PSY_LAME_NUM_SUBBLOCKS; i++) {
  809. const float *const pfe = pf + AAC_BLOCK_SIZE_LONG / (AAC_NUM_BLOCKS_SHORT * PSY_LAME_NUM_SUBBLOCKS);
  810. float p = 1.0f;
  811. for (; pf < pfe; pf++)
  812. p = FFMAX(p, fabsf(*pf));
  813. pch->prev_energy_subshort[i] = energy_subshort[i + PSY_LAME_NUM_SUBBLOCKS] = p;
  814. energy_short[1 + i / PSY_LAME_NUM_SUBBLOCKS] += p;
  815. /* NOTE: The indexes below are [i + 3 - 2] in the LAME source.
  816. * Obviously the 3 and 2 have some significance, or this would be just [i + 1]
  817. * (which is what we use here). What the 3 stands for is ambiguous, as it is both
  818. * number of short blocks, and the number of sub-short blocks.
  819. * It seems that LAME is comparing each sub-block to sub-block + 1 in the
  820. * previous block.
  821. */
  822. if (p > energy_subshort[i + 1])
  823. p = p / energy_subshort[i + 1];
  824. else if (energy_subshort[i + 1] > p * 10.0f)
  825. p = energy_subshort[i + 1] / (p * 10.0f);
  826. else
  827. p = 0.0;
  828. attack_intensity[i + PSY_LAME_NUM_SUBBLOCKS] = p;
  829. }
  830. /* compare energy between sub-short blocks */
  831. for (i = 0; i < (AAC_NUM_BLOCKS_SHORT + 1) * PSY_LAME_NUM_SUBBLOCKS; i++)
  832. if (!attacks[i / PSY_LAME_NUM_SUBBLOCKS])
  833. if (attack_intensity[i] > pch->attack_threshold)
  834. attacks[i / PSY_LAME_NUM_SUBBLOCKS] = (i % PSY_LAME_NUM_SUBBLOCKS) + 1;
  835. /* should have energy change between short blocks, in order to avoid periodic signals */
  836. /* Good samples to show the effect are Trumpet test songs */
  837. /* GB: tuned (1) to avoid too many short blocks for test sample TRUMPET */
  838. /* RH: tuned (2) to let enough short blocks through for test sample FSOL and SNAPS */
  839. for (i = 1; i < AAC_NUM_BLOCKS_SHORT + 1; i++) {
  840. const float u = energy_short[i - 1];
  841. const float v = energy_short[i];
  842. const float m = FFMAX(u, v);
  843. if (m < 40000) { /* (2) */
  844. if (u < 1.7f * v && v < 1.7f * u) { /* (1) */
  845. if (i == 1 && attacks[0] < attacks[i])
  846. attacks[0] = 0;
  847. attacks[i] = 0;
  848. }
  849. }
  850. att_sum += attacks[i];
  851. }
  852. if (attacks[0] <= pch->prev_attack)
  853. attacks[0] = 0;
  854. att_sum += attacks[0];
  855. /* 3 below indicates the previous attack happened in the last sub-block of the previous sequence */
  856. if (pch->prev_attack == 3 || att_sum) {
  857. uselongblock = 0;
  858. for (i = 1; i < AAC_NUM_BLOCKS_SHORT + 1; i++)
  859. if (attacks[i] && attacks[i-1])
  860. attacks[i] = 0;
  861. }
  862. } else {
  863. /* We have no lookahead info, so just use same type as the previous sequence. */
  864. uselongblock = !(prev_type == EIGHT_SHORT_SEQUENCE);
  865. }
  866. lame_apply_block_type(pch, &wi, uselongblock);
  867. wi.window_type[1] = prev_type;
  868. if (wi.window_type[0] != EIGHT_SHORT_SEQUENCE) {
  869. wi.num_windows = 1;
  870. wi.grouping[0] = 1;
  871. if (wi.window_type[0] == LONG_START_SEQUENCE)
  872. wi.window_shape = 0;
  873. else
  874. wi.window_shape = 1;
  875. } else {
  876. int lastgrp = 0;
  877. wi.num_windows = 8;
  878. wi.window_shape = 0;
  879. for (i = 0; i < 8; i++) {
  880. if (!((pch->next_grouping >> i) & 1))
  881. lastgrp = i;
  882. wi.grouping[lastgrp]++;
  883. }
  884. }
  885. /* Determine grouping, based on the location of the first attack, and save for
  886. * the next frame.
  887. * FIXME: Move this to analysis.
  888. * TODO: Tune groupings depending on attack location
  889. * TODO: Handle more than one attack in a group
  890. */
  891. for (i = 0; i < 9; i++) {
  892. if (attacks[i]) {
  893. grouping = i;
  894. break;
  895. }
  896. }
  897. pch->next_grouping = window_grouping[grouping];
  898. pch->prev_attack = attacks[8];
  899. return wi;
  900. }
  901. const FFPsyModel ff_aac_psy_model =
  902. {
  903. .name = "3GPP TS 26.403-inspired model",
  904. .init = psy_3gpp_init,
  905. .window = psy_lame_window,
  906. .analyze = psy_3gpp_analyze,
  907. .end = psy_3gpp_end,
  908. };