port.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:5k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /************************* MPEG-2 NBC Audio Decoder **************************
  2.  *                                                                           *
  3. "This software module was originally developed by
  4. AT&T, Dolby Laboratories, Fraunhofer Gesellschaft IIS and edited by
  5. Yoshiaki Oikawa (Sony Corporaion),
  6. Mitsuyuki Hatanaka (Sony Corporation),
  7. in the course of development of the MPEG-2 NBC/MPEG-4 Audio standard ISO/IEC 13818-7,
  8. 14496-1,2 and 3. This software module is an implementation of a part of one or more
  9. MPEG-2 NBC/MPEG-4 Audio tools as specified by the MPEG-2 NBC/MPEG-4
  10. Audio standard. ISO/IEC  gives users of the MPEG-2 NBC/MPEG-4 Audio
  11. standards free license to this software module or modifications thereof for use in
  12. hardware or software products claiming conformance to the MPEG-2 NBC/MPEG-4
  13. Audio  standards. Those intending to use this software module in hardware or
  14. software products are advised that this use may infringe existing patents.
  15. The original developer of this software module and his/her company, the subsequent
  16. editors and their companies, and ISO/IEC have no liability for use of this software
  17. module or modifications thereof in an implementation. Copyright is not released for
  18. non MPEG-2 NBC/MPEG-4 Audio conforming products.The original developer
  19. retains full right to use the code for his/her  own purpose, assign or donate the
  20. code to a third party and to inhibit third party from using the code for non
  21. MPEG-2 NBC/MPEG-4 Audio conforming products. This copyright notice must
  22. be included in all copies or derivative works."
  23. Copyright(c)1996.
  24.  *                                                                           *
  25.  ****************************************************************************/
  26. /*
  27.  * $Id: port.h,v 1.9 2002/01/09 22:25:41 wmay Exp $
  28.  */
  29. #ifndef _port_h_
  30. #define _port_h_
  31. #ifndef min
  32. #define min(a,b) ( (a) < (b) ? (a) : (b) )
  33. #endif
  34. #include "all.h"
  35. int check_mc_info(faacDecHandle hDecoder, MC_Info *mip, int new_config);
  36. int chn_config(faacDecHandle hDecoder, int id, int tag,
  37.                int common_window, MC_Info *mip);
  38. __inline void decode_huff_cw(faacDecHandle hDecoder, Huffman *h, int *qp, Hcb *hcb);
  39. __inline int decode_huff_cw_scl(faacDecHandle hDecoder, Huffscl *h);
  40. int enter_mc_info(faacDecHandle hDecoder, MC_Info *mip, ProgConfig *pcp);
  41. int get_adif_header(faacDecHandle hDecoder);
  42. int get_adts_header(faacDecHandle hDecoder);
  43. int get_prog_config(faacDecHandle hDecoder, ProgConfig *p);
  44. void getfill(faacDecHandle hDecoder, byte *data);
  45. int getdata(faacDecHandle hDecoder, int *tag, int *dt_cnt, byte *data_bytes);
  46. void huffbookinit(faacDecHandle hDecoder);
  47. int huffdecode(faacDecHandle hDecoder, int id, MC_Info *mip, byte *win,
  48.                Wnd_Shape *wshape, byte **cb_map, int **factors,
  49.                byte **group, byte *hasmask, byte **mask, byte *max_sfb,
  50.                int **lpflag, int **prstflag, NOK_LT_PRED_STATUS **nok_ltp,
  51.                TNS_frame_info **tns, Float **coef);
  52. void hufftab(Hcb *hcb, Huffman *hcw, int dim, int signed_cb);
  53. void infoinit(faacDecHandle hDecoder, SR_Info *sip);
  54. void intensity(MC_Info *mip, Info *info, int widx, int ch, byte *group, byte *cb_map,
  55.                int *factors, int *lpflag, Float *coef[Chans]);
  56. void map_mask(Info *info, byte *group, byte *mask, byte *cb_map);
  57. void reset_mc_info(faacDecHandle hDecoder, MC_Info *mip);
  58. void reset_bits(void);
  59. void synt(Info *info, byte *group, byte *mask, Float *right, Float *left);
  60. void tns_decode_subblock(faacDecHandle hDecoder, Float *spec, int nbands,
  61.                          int *sfb_top, int islong, TNSinfo *tns_info);
  62. void tns_filter_subblock(faacDecHandle hDecoder, Float *spec, int nbands,
  63.                          int *sfb_top, int islong, TNSinfo *tns_info);
  64. void pns(faacDecHandle hDecoder, MC_Info *mip, Info *info, int widx, int ch, byte *group, byte *cb_map,
  65.          int *factors, int *lpflag, Float *coef[Chans]);
  66. void freq2time_adapt(faacDecHandle hDecoder,byte wnd, Wnd_Shape *wnd_shape,
  67.                      Float *coef, Float *state, Float *data);
  68. void time2freq_adapt(faacDecHandle hDecoder,WINDOW_TYPE blockType, Wnd_Shape *wnd_shape,
  69.                      Float *timeInPtr, Float *ffreqOutPtr);
  70. int predict(faacDecHandle hDecoder, Info* info, int profile, int *lpflag, PRED_STATUS *psp, Float *coef);
  71. void predict_pns_reset(Info* info, PRED_STATUS *psp, byte *cb_map);
  72. void init_pred(faacDecHandle hDecoder, PRED_STATUS **sp_status, int channels);
  73. int predict_reset(faacDecHandle hDecoder, Info* info, int *prstflag, PRED_STATUS **psp,
  74.                   int firstCh, int lastCh, int *last_rstgrp_num);
  75. void reset_pred_state(PRED_STATUS *psp);
  76. int get_sr_index(unsigned int sampleRate);
  77. #endif  /* _port_h_ */