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

多媒体编程

开发平台:

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: ssr.c,v 1.2 2005/11/01 21:41:43 gabest Exp $
  31. **/
  32. #include "common.h"
  33. #include "structs.h"
  34. #ifdef SSR_DEC
  35. #include "syntax.h"
  36. #include "filtbank.h"
  37. #include "ssr.h"
  38. #include "ssr_fb.h"
  39. void ssr_decode(ssr_info *ssr, fb_info *fb, uint8_t window_sequence,
  40.                 uint8_t window_shape, uint8_t window_shape_prev,
  41.                 real_t *freq_in, real_t *time_out, real_t *overlap,
  42.                 real_t ipqf_buffer[SSR_BANDS][96/4],
  43.                 real_t *prev_fmd, uint16_t frame_len)
  44. {
  45.     uint8_t band;
  46.     uint16_t ssr_frame_len = frame_len/SSR_BANDS;
  47.     real_t time_tmp[2048] = {0};
  48.     real_t output[1024] = {0};
  49.     for (band = 0; band < SSR_BANDS; band++)
  50.     {
  51.         int16_t j;
  52.         /* uneven bands have inverted frequency scale */
  53.         if (band == 1 || band == 3)
  54.         {
  55.             for (j = 0; j < ssr_frame_len/2; j++)
  56.             {
  57.                 real_t tmp;
  58.                 tmp = freq_in[j + ssr_frame_len*band];
  59.                 freq_in[j + ssr_frame_len*band] =
  60.                     freq_in[ssr_frame_len - j - 1 + ssr_frame_len*band];
  61.                 freq_in[ssr_frame_len - j - 1 + ssr_frame_len*band] = tmp;
  62.             }
  63.         }
  64.         /* non-overlapping inverse filterbank for SSR */
  65.         ssr_ifilter_bank(fb, window_sequence, window_shape, window_shape_prev,
  66.             freq_in + band*ssr_frame_len, time_tmp + band*ssr_frame_len,
  67.             ssr_frame_len);
  68.         /* gain control */
  69.         ssr_gain_control(ssr, time_tmp, output, overlap, prev_fmd,
  70.             band, window_sequence, ssr_frame_len);
  71.     }
  72.     /* inverse pqf to bring subbands together again */
  73.     ssr_ipqf(ssr, output, time_out, ipqf_buffer, frame_len, SSR_BANDS);
  74. }
  75. static void ssr_gain_control(ssr_info *ssr, real_t *data, real_t *output,
  76.                              real_t *overlap, real_t *prev_fmd, uint8_t band,
  77.                              uint8_t window_sequence, uint16_t frame_len)
  78. {
  79.     uint16_t i;
  80.     real_t gc_function[2*1024/SSR_BANDS];
  81.     if (window_sequence != EIGHT_SHORT_SEQUENCE)
  82.     {
  83.         ssr_gc_function(ssr, &prev_fmd[band * frame_len*2],
  84.             gc_function, window_sequence, band, frame_len);
  85.         for (i = 0; i < frame_len*2; i++)
  86.             data[band * frame_len*2 + i] *= gc_function[i];
  87.         for (i = 0; i < frame_len; i++)
  88.         {
  89.             output[band*frame_len + i] = overlap[band*frame_len + i] +
  90.                 data[band*frame_len*2 + i];
  91.         }
  92.         for (i = 0; i < frame_len; i++)
  93.         {
  94.             overlap[band*frame_len + i] =
  95.                 data[band*frame_len*2 + frame_len + i];
  96.         }
  97.     } else {
  98.         uint8_t w;
  99.         for (w = 0; w < 8; w++)
  100.         {
  101.             uint16_t frame_len8 = frame_len/8;
  102.             uint16_t frame_len16 = frame_len/16;
  103.             ssr_gc_function(ssr, &prev_fmd[band*frame_len*2 + w*frame_len*2/8],
  104.                 gc_function, window_sequence, frame_len);
  105.             for (i = 0; i < frame_len8*2; i++)
  106.                 data[band*frame_len*2 + w*frame_len8*2+i] *= gc_function[i];
  107.             for (i = 0; i < frame_len8; i++)
  108.             {
  109.                 overlap[band*frame_len + i + 7*frame_len16 + w*frame_len8] +=
  110.                     data[band*frame_len*2 + 2*w*frame_len8 + i];
  111.             }
  112.             for (i = 0; i < frame_len8; i++)
  113.             {
  114.                 overlap[band*frame_len + i + 7*frame_len16 + (w+1)*frame_len8] =
  115.                     data[band*frame_len*2 + 2*w*frame_len8 + frame_len8 + i];
  116.             }
  117.         }
  118.         for (i = 0; i < frame_len; i++)
  119.             output[band*frame_len + i] = overlap[band*frame_len + i];
  120.         for (i = 0; i < frame_len; i++)
  121.             overlap[band*frame_len + i] = overlap[band*frame_len + i + frame_len];
  122.     }
  123. }
  124. static void ssr_gc_function(ssr_info *ssr, real_t *prev_fmd,
  125.                             real_t *gc_function, uint8_t window_sequence,
  126.                             uint8_t band, uint16_t frame_len)
  127. {
  128.     uint16_t i;
  129.     uint16_t len_area1, len_area2;
  130.     int32_t aloc[10];
  131.     real_t alev[10];
  132.     switch (window_sequence)
  133.     {
  134.     case ONLY_LONG_SEQUENCE:
  135.         len_area1 = frame_len/SSR_BANDS;
  136.         len_area2 = 0;
  137.         break;
  138.     case LONG_START_SEQUENCE:
  139.         len_area1 = (frame_len/SSR_BANDS)*7/32;
  140.         len_area2 = (frame_len/SSR_BANDS)/16;
  141.         break;
  142.     case EIGHT_SHORT_SEQUENCE:
  143.         len_area1 = (frame_len/8)/SSR_BANDS;
  144.         len_area2 = 0;
  145.         break;
  146.     case LONG_STOP_SEQUENCE:
  147.         len_area1 = (frame_len/SSR_BANDS);
  148.         len_area2 = 0;
  149.         break;
  150.     }
  151.     /* decode bitstream information */
  152.     /* build array M */
  153.     for (i = 0; i < frame_len*2; i++)
  154.         gc_function[i] = 1;
  155. }
  156. #endif