sbr_tf_grid.c
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:7k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /*
  2. ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
  3. ** Copyright (C) 2003-2005 M. Bakker, Ahead Software AG, http://www.nero.com
  4. **  
  5. ** This program is free software; you can redistribute it and/or modify
  6. ** it under the terms of the GNU General Public License as published by
  7. ** the Free Software Foundation; either version 2 of the License, or
  8. ** (at your option) any later version.
  9. ** 
  10. ** This program is distributed in the hope that it will be useful,
  11. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. ** GNU General Public License for more details.
  14. ** 
  15. ** You should have received a copy of the GNU General Public License
  16. ** along with this program; if not, write to the Free Software 
  17. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. **
  19. ** Any non-GPL usage of this software or parts of this software is strictly
  20. ** forbidden.
  21. **
  22. ** Software using this code must display the following message visibly in the
  23. ** software:
  24. ** "FAAD2 AAC/HE-AAC/HE-AACv2/DRM decoder (c) Ahead Software, www.nero.com"
  25. ** in, for example, the about-box or help/startup screen.
  26. **
  27. ** Commercial non-GPL licensing of this software is possible.
  28. ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com.
  29. **
  30. ** $Id: sbr_tf_grid.c,v 1.3 2005/11/01 21:41:43 gabest Exp $
  31. **/
  32. /* Time/Frequency grid */
  33. #include "common.h"
  34. #include "structs.h"
  35. #ifdef SBR_DEC
  36. #include <stdlib.h>
  37. #include "sbr_syntax.h"
  38. #include "sbr_tf_grid.h"
  39. /* static function declarations */
  40. #if 0
  41. static int16_t rel_bord_lead(sbr_info *sbr, uint8_t ch, uint8_t l);
  42. static int16_t rel_bord_trail(sbr_info *sbr, uint8_t ch, uint8_t l);
  43. #endif
  44. static uint8_t middleBorder(sbr_info *sbr, uint8_t ch);
  45. /* function constructs new time border vector */
  46. /* first build into temp vector to be able to use previous vector on error */
  47. uint8_t envelope_time_border_vector(sbr_info *sbr, uint8_t ch)
  48. {
  49.     uint8_t l, border, temp;
  50.     uint8_t t_E_temp[6] = {0};
  51.     t_E_temp[0] = sbr->rate * sbr->abs_bord_lead[ch];
  52.     t_E_temp[sbr->L_E[ch]] = sbr->rate * sbr->abs_bord_trail[ch];
  53.     switch (sbr->bs_frame_class[ch])
  54.     {
  55.     case FIXFIX:
  56.         switch (sbr->L_E[ch])
  57.         {
  58.         case 4:
  59.             temp = (int) (sbr->numTimeSlots / 4);
  60.             t_E_temp[3] = sbr->rate * 3 * temp;
  61.             t_E_temp[2] = sbr->rate * 2 * temp;
  62.             t_E_temp[1] = sbr->rate * temp;
  63.             break;
  64.         case 2:
  65.             t_E_temp[1] = sbr->rate * (int) (sbr->numTimeSlots / 2);
  66.             break;
  67.         default:
  68.             break;
  69.         }
  70.         break;
  71.     case FIXVAR:
  72.         if (sbr->L_E[ch] > 1)
  73.         {
  74.             int8_t i = sbr->L_E[ch];
  75.             border = sbr->abs_bord_trail[ch];
  76.             for (l = 0; l < (sbr->L_E[ch] - 1); l++)
  77.             {
  78.                 if (border < sbr->bs_rel_bord[ch][l])
  79.                     return 1;
  80.                 border -= sbr->bs_rel_bord[ch][l];
  81.                 t_E_temp[--i] = sbr->rate * border;
  82.             }
  83.         }
  84.         break;
  85.     case VARFIX:
  86.         if (sbr->L_E[ch] > 1)
  87.         {
  88.             int8_t i = 1;
  89.             border = sbr->abs_bord_lead[ch];
  90.             for (l = 0; l < (sbr->L_E[ch] - 1); l++)
  91.             {
  92.                 border += sbr->bs_rel_bord[ch][l];
  93.                 if (sbr->rate * border + sbr->tHFAdj > sbr->numTimeSlotsRate+sbr->tHFGen)
  94.                     return 1;
  95.                 t_E_temp[i++] = sbr->rate * border;
  96.             }
  97.         }
  98.         break;
  99.     case VARVAR:
  100.         if (sbr->bs_num_rel_0[ch])
  101.         {
  102.             int8_t i = 1;
  103.             border = sbr->abs_bord_lead[ch];
  104.             for (l = 0; l < sbr->bs_num_rel_0[ch]; l++)
  105.             {
  106.                 border += sbr->bs_rel_bord_0[ch][l];
  107.                 if (sbr->rate * border + sbr->tHFAdj > sbr->numTimeSlotsRate+sbr->tHFGen)
  108.                     return 1;
  109.                 t_E_temp[i++] = sbr->rate * border;
  110.             }
  111.         }
  112.         if (sbr->bs_num_rel_1[ch])
  113.         {
  114.             int8_t i = sbr->L_E[ch];
  115.             border = sbr->abs_bord_trail[ch];
  116.             for (l = 0; l < sbr->bs_num_rel_1[ch]; l++)
  117.             {
  118.                 if (border < sbr->bs_rel_bord_1[ch][l])
  119.                     return 1;
  120.                 border -= sbr->bs_rel_bord_1[ch][l];
  121.                 t_E_temp[--i] = sbr->rate * border;
  122.             }
  123.         }
  124.         break;
  125.     }
  126.     /* no error occured, we can safely use this t_E vector */
  127.     for (l = 0; l < 6; l++)
  128.     {
  129.         sbr->t_E[ch][l] = t_E_temp[l];
  130.     }
  131.     return 0;
  132. }
  133. void noise_floor_time_border_vector(sbr_info *sbr, uint8_t ch)
  134. {
  135.     sbr->t_Q[ch][0] = sbr->t_E[ch][0];
  136.     if (sbr->L_E[ch] == 1)
  137.     {
  138.         sbr->t_Q[ch][1] = sbr->t_E[ch][1];
  139.         sbr->t_Q[ch][2] = 0;
  140.     } else {
  141.         uint8_t index = middleBorder(sbr, ch);
  142.         sbr->t_Q[ch][1] = sbr->t_E[ch][index];
  143.         sbr->t_Q[ch][2] = sbr->t_E[ch][sbr->L_E[ch]];
  144.     }
  145. }
  146. #if 0
  147. static int16_t rel_bord_lead(sbr_info *sbr, uint8_t ch, uint8_t l)
  148. {
  149.     uint8_t i;
  150.     int16_t acc = 0;
  151.     switch (sbr->bs_frame_class[ch])
  152.     {
  153.     case FIXFIX:
  154.         return sbr->numTimeSlots/sbr->L_E[ch];
  155.     case FIXVAR:
  156.         return 0;
  157.     case VARFIX:
  158.         for (i = 0; i < l; i++)
  159.         {
  160.             acc += sbr->bs_rel_bord[ch][i];
  161.         }
  162.         return acc;
  163.     case VARVAR:
  164.         for (i = 0; i < l; i++)
  165.         {
  166.             acc += sbr->bs_rel_bord_0[ch][i];
  167.         }
  168.         return acc;
  169.     }
  170.     return 0;
  171. }
  172. static int16_t rel_bord_trail(sbr_info *sbr, uint8_t ch, uint8_t l)
  173. {
  174.     uint8_t i;
  175.     int16_t acc = 0;
  176.     switch (sbr->bs_frame_class[ch])
  177.     {
  178.     case FIXFIX:
  179.     case VARFIX:
  180.         return 0;
  181.     case FIXVAR:
  182.         for (i = 0; i < l; i++)
  183.         {
  184.             acc += sbr->bs_rel_bord[ch][i];
  185.         }
  186.         return acc;
  187.     case VARVAR:
  188.         for (i = 0; i < l; i++)
  189.         {
  190.             acc += sbr->bs_rel_bord_1[ch][i];
  191.         }
  192.         return acc;
  193.     }
  194.     return 0;
  195. }
  196. #endif
  197. static uint8_t middleBorder(sbr_info *sbr, uint8_t ch)
  198. {
  199.     int8_t retval = 0;
  200.     switch (sbr->bs_frame_class[ch])
  201.     {
  202.     case FIXFIX:
  203.         retval = sbr->L_E[ch]/2;
  204.         break;
  205.     case VARFIX:
  206.         if (sbr->bs_pointer[ch] == 0)
  207.             retval = 1;
  208.         else if (sbr->bs_pointer[ch] == 1)
  209.             retval = sbr->L_E[ch] - 1;
  210.         else
  211.             retval = sbr->bs_pointer[ch] - 1;
  212.         break;
  213.     case FIXVAR:
  214.     case VARVAR:
  215.         if (sbr->bs_pointer[ch] > 1)
  216.             retval = sbr->L_E[ch] + 1 - sbr->bs_pointer[ch];
  217.         else
  218.             retval = sbr->L_E[ch] - 1;
  219.         break;
  220.     }
  221.     return (retval > 0) ? retval : 0;
  222. }
  223. #endif