sbr_dec.h
上传用户: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_dec.h,v 1.3 2005/11/01 21:41:43 gabest Exp $
  31. **/
  32. #ifndef __SBR_DEC_H__
  33. #define __SBR_DEC_H__
  34. #ifdef __cplusplus
  35. extern "C" {
  36. #endif
  37. #ifdef PS_DEC
  38. #include "ps_dec.h"
  39. #endif
  40. #ifdef DRM_PS
  41. #include "drm_dec.h"
  42. #endif
  43. /* MAX_NTSRHFG: maximum of number_time_slots * rate + HFGen. 16*2+8 */
  44. #define MAX_NTSRHFG 40
  45. #define MAX_NTSR    32 /* max number_time_slots * rate, ok for DRM and not DRM mode */
  46. /* MAX_M: maximum value for M */
  47. #define MAX_M       49
  48. /* MAX_L_E: maximum value for L_E */
  49. #define MAX_L_E      5
  50. typedef struct {
  51.     real_t *x;
  52.     int16_t x_index;
  53.     uint8_t channels;
  54. } qmfa_info;
  55. typedef struct {
  56.     real_t *v;
  57.     int16_t v_index;
  58.     uint8_t channels;
  59. } qmfs_info;
  60. typedef struct
  61. {
  62.     uint32_t sample_rate;
  63.     uint32_t maxAACLine;
  64.     uint8_t rate;
  65.     uint8_t just_seeked;
  66.     uint8_t ret;
  67.     uint8_t amp_res[2];
  68.     uint8_t k0;
  69.     uint8_t kx;
  70.     uint8_t M;
  71.     uint8_t N_master;
  72.     uint8_t N_high;
  73.     uint8_t N_low;
  74.     uint8_t N_Q;
  75.     uint8_t N_L[4];
  76.     uint8_t n[2];
  77.     uint8_t f_master[64];
  78.     uint8_t f_table_res[2][64];
  79.     uint8_t f_table_noise[64];
  80.     uint8_t f_table_lim[4][64];
  81. #ifdef SBR_LOW_POWER
  82.     uint8_t f_group[5][64];
  83.     uint8_t N_G[5];
  84. #endif
  85.     uint8_t table_map_k_to_g[64];
  86.     uint8_t abs_bord_lead[2];
  87.     uint8_t abs_bord_trail[2];
  88.     uint8_t n_rel_lead[2];
  89.     uint8_t n_rel_trail[2];
  90.     uint8_t L_E[2];
  91.     uint8_t L_E_prev[2];
  92.     uint8_t L_Q[2];
  93.     uint8_t t_E[2][MAX_L_E+1];
  94.     uint8_t t_Q[2][3];
  95.     uint8_t f[2][MAX_L_E+1];
  96.     uint8_t f_prev[2];
  97.     real_t *G_temp_prev[2][5];
  98.     real_t *Q_temp_prev[2][5];
  99.     int8_t GQ_ringbuf_index[2];
  100.     int16_t E[2][64][MAX_L_E];
  101.     int16_t E_prev[2][64];
  102. #ifndef FIXED_POINT
  103.     real_t E_orig[2][64][MAX_L_E];
  104. #endif
  105.     real_t E_curr[2][64][MAX_L_E];
  106.     int32_t Q[2][64][2];
  107. #ifndef FIXED_POINT
  108.     real_t Q_div[2][64][2];
  109.     real_t Q_div2[2][64][2];
  110. #endif
  111.     int32_t Q_prev[2][64];
  112.     int8_t l_A[2];
  113.     int8_t l_A_prev[2];
  114.     uint8_t bs_invf_mode[2][MAX_L_E];
  115.     uint8_t bs_invf_mode_prev[2][MAX_L_E];
  116.     real_t bwArray[2][64];
  117.     real_t bwArray_prev[2][64];
  118.     uint8_t noPatches;
  119.     uint8_t patchNoSubbands[64];
  120.     uint8_t patchStartSubband[64];
  121.     uint8_t bs_add_harmonic[2][64];
  122.     uint8_t bs_add_harmonic_prev[2][64];
  123.     uint16_t index_noise_prev[2];
  124.     uint8_t psi_is_prev[2];
  125.     uint8_t bs_start_freq_prev;
  126.     uint8_t bs_stop_freq_prev;
  127.     uint8_t bs_xover_band_prev;
  128.     uint8_t bs_freq_scale_prev;
  129.     uint8_t bs_alter_scale_prev;
  130.     uint8_t bs_noise_bands_prev;
  131.     int8_t prevEnvIsShort[2];
  132.     int8_t kx_prev;
  133.     uint8_t bsco;
  134.     uint8_t bsco_prev;
  135.     uint8_t M_prev;
  136.     uint16_t frame_len;
  137.     uint8_t Reset;
  138.     uint32_t frame;
  139.     uint32_t header_count;
  140.     uint8_t id_aac;
  141.     qmfa_info *qmfa[2];
  142.     qmfs_info *qmfs[2];
  143.     qmf_t Xsbr[2][MAX_NTSRHFG][64];
  144. #ifdef DRM
  145.     uint8_t Is_DRM_SBR;
  146. #ifdef DRM_PS
  147.     drm_ps_info *drm_ps;
  148. #endif
  149. #endif
  150.     uint8_t numTimeSlotsRate;
  151.     uint8_t numTimeSlots;
  152.     uint8_t tHFGen;
  153.     uint8_t tHFAdj;
  154. #ifdef PS_DEC
  155.     ps_info *ps;
  156. #endif
  157. #if (defined(PS_DEC) || defined(DRM_PS))
  158.     uint8_t ps_used;
  159. #endif
  160.     /* to get it compiling */
  161.     /* we'll see during the coding of all the tools, whether
  162.        these are all used or not.
  163.     */
  164.     uint8_t bs_header_flag;
  165.     uint8_t bs_crc_flag;
  166.     uint16_t bs_sbr_crc_bits;
  167.     uint8_t bs_protocol_version;
  168.     uint8_t bs_amp_res;
  169.     uint8_t bs_start_freq;
  170.     uint8_t bs_stop_freq;
  171.     uint8_t bs_xover_band;
  172.     uint8_t bs_freq_scale;
  173.     uint8_t bs_alter_scale;
  174.     uint8_t bs_noise_bands;
  175.     uint8_t bs_limiter_bands;
  176.     uint8_t bs_limiter_gains;
  177.     uint8_t bs_interpol_freq;
  178.     uint8_t bs_smoothing_mode;
  179.     uint8_t bs_samplerate_mode;
  180.     uint8_t bs_add_harmonic_flag[2];
  181.     uint8_t bs_add_harmonic_flag_prev[2];
  182.     uint8_t bs_extended_data;
  183.     uint8_t bs_extension_id;
  184.     uint8_t bs_extension_data;
  185.     uint8_t bs_coupling;
  186.     uint8_t bs_frame_class[2];
  187.     uint8_t bs_rel_bord[2][9];
  188.     uint8_t bs_rel_bord_0[2][9];
  189.     uint8_t bs_rel_bord_1[2][9];
  190.     uint8_t bs_pointer[2];
  191.     uint8_t bs_abs_bord_0[2];
  192.     uint8_t bs_abs_bord_1[2];
  193.     uint8_t bs_num_rel_0[2];
  194.     uint8_t bs_num_rel_1[2];
  195.     uint8_t bs_df_env[2][9];
  196.     uint8_t bs_df_noise[2][3];
  197. } sbr_info;
  198. sbr_info *sbrDecodeInit(uint16_t framelength, uint8_t id_aac,
  199.                         uint32_t sample_rate, uint8_t downSampledSBR
  200. #ifdef DRM
  201.                         , uint8_t IsDRM
  202. #endif
  203.                         );
  204. void sbrDecodeEnd(sbr_info *sbr);
  205. void sbrReset(sbr_info *sbr);
  206. uint8_t sbrDecodeCoupleFrame(sbr_info *sbr, real_t *left_chan, real_t *right_chan,
  207.                              const uint8_t just_seeked, const uint8_t downSampledSBR);
  208. uint8_t sbrDecodeSingleFrame(sbr_info *sbr, real_t *channel,
  209.                              const uint8_t just_seeked, const uint8_t downSampledSBR);
  210. #if (defined(PS_DEC) || defined(DRM_PS))
  211. uint8_t sbrDecodeSingleFramePS(sbr_info *sbr, real_t *left_channel, real_t *right_channel,
  212.                                const uint8_t just_seeked, const uint8_t downSampledSBR);
  213. #endif
  214. #ifdef __cplusplus
  215. }
  216. #endif
  217. #endif