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

多媒体编程

开发平台:

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: ps_dec.h,v 1.2 2005/11/01 21:41:43 gabest Exp $
  31. **/
  32. #ifndef __PS_DEC_H__
  33. #define __PS_DEC_H__
  34. #ifdef __cplusplus
  35. extern "C" {
  36. #endif
  37. #include "bits.h"
  38. #define EXTENSION_ID_PS 2
  39. #define MAX_PS_ENVELOPES 5
  40. #define NO_ALLPASS_LINKS 3
  41. typedef struct
  42. {
  43.     /* bitstream parameters */
  44.     uint8_t enable_iid;
  45.     uint8_t enable_icc;
  46.     uint8_t enable_ext;
  47.     uint8_t iid_mode;
  48.     uint8_t icc_mode;
  49.     uint8_t nr_iid_par;
  50.     uint8_t nr_ipdopd_par;
  51.     uint8_t nr_icc_par;
  52.     uint8_t frame_class;
  53.     uint8_t num_env;
  54.     uint8_t border_position[MAX_PS_ENVELOPES+1];
  55.     uint8_t iid_dt[MAX_PS_ENVELOPES];
  56.     uint8_t icc_dt[MAX_PS_ENVELOPES];
  57.     uint8_t enable_ipdopd;
  58.     uint8_t ipd_mode;
  59.     uint8_t ipd_dt[MAX_PS_ENVELOPES];
  60.     uint8_t opd_dt[MAX_PS_ENVELOPES];
  61.     /* indices */
  62.     int8_t iid_index_prev[34];
  63.     int8_t icc_index_prev[34];
  64.     int8_t ipd_index_prev[17];
  65.     int8_t opd_index_prev[17];
  66.     int8_t iid_index[MAX_PS_ENVELOPES][34];
  67.     int8_t icc_index[MAX_PS_ENVELOPES][34];
  68.     int8_t ipd_index[MAX_PS_ENVELOPES][17];
  69.     int8_t opd_index[MAX_PS_ENVELOPES][17];
  70.     int8_t ipd_index_1[17];
  71.     int8_t opd_index_1[17];
  72.     int8_t ipd_index_2[17];
  73.     int8_t opd_index_2[17];
  74.     /* ps data was correctly read */
  75.     uint8_t ps_data_available;
  76.     /* a header has been read */
  77.     uint8_t header_read;
  78.     /* hybrid filterbank parameters */
  79.     void *hyb;
  80.     uint8_t use34hybrid_bands;
  81.     /**/
  82.     uint8_t num_groups;
  83.     uint8_t num_hybrid_groups;
  84.     uint8_t nr_par_bands;
  85.     uint8_t nr_allpass_bands;
  86.     uint8_t decay_cutoff;
  87.     uint8_t *group_border;
  88.     uint16_t *map_group2bk;
  89.     /* filter delay handling */
  90.     uint8_t saved_delay;
  91.     uint8_t delay_buf_index_ser[NO_ALLPASS_LINKS];
  92.     uint8_t num_sample_delay_ser[NO_ALLPASS_LINKS];
  93.     uint8_t delay_D[64];
  94.     uint8_t delay_buf_index_delay[64];
  95.     complex_t delay_Qmf[14][64]; /* 14 samples delay max, 64 QMF channels */
  96.     complex_t delay_SubQmf[2][32]; /* 2 samples delay max (SubQmf is always allpass filtered) */
  97.     complex_t delay_Qmf_ser[NO_ALLPASS_LINKS][5][64]; /* 5 samples delay max (table 8.34), 64 QMF channels */
  98.     complex_t delay_SubQmf_ser[NO_ALLPASS_LINKS][5][32]; /* 5 samples delay max (table 8.34) */
  99.     /* transients */
  100.     real_t alpha_decay;
  101.     real_t alpha_smooth;
  102.     real_t P_PeakDecayNrg[34];
  103.     real_t P_prev[34];
  104.     real_t P_SmoothPeakDecayDiffNrg_prev[34];
  105.     /* mixing and phase */
  106.     complex_t h11_prev[50];
  107.     complex_t h12_prev[50];
  108.     complex_t h21_prev[50];
  109.     complex_t h22_prev[50];
  110.     uint8_t phase_hist;
  111.     complex_t ipd_prev[20][2];
  112.     complex_t opd_prev[20][2];
  113. } ps_info;
  114. /* ps_syntax.c */
  115. uint16_t ps_data(ps_info *ps, bitfile *ld, uint8_t *header);
  116. /* ps_dec.c */
  117. ps_info *ps_init(uint8_t sr_index);
  118. void ps_free(ps_info *ps);
  119. uint8_t ps_decode(ps_info *ps, qmf_t X_left[38][64], qmf_t X_right[38][64]);
  120. #ifdef __cplusplus
  121. }
  122. #endif
  123. #endif