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

流媒体/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 Corporation),
  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. #ifndef _all_h_
  27. #define _all_h_
  28. #include "systems.h"
  29. #include <math.h>
  30. #include "interface.h"
  31. #include "tns.h"
  32. #include "nok_ltp_common.h"
  33. #include "monopred.h"
  34. #include "bits.h"
  35. #ifndef _POSIX_SOURCE
  36. #define                 _POSIX_SOURCE   /* stops repeat typdef of ulong */
  37. #endif
  38. #ifdef __cplusplus
  39. extern "C" {
  40. #endif
  41. typedef float Float;
  42. typedef unsigned char byte;
  43. enum
  44. {
  45.     /*
  46.      * channels for 5.1 main profile configuration 
  47.      * (modify for any desired decoder configuration)
  48.      */
  49. #ifdef BIGDECODER
  50.     FChans = 15, /* front channels: left, center, right */
  51.     FCenter = 1, /* 1 if decoder has front center channel */
  52.     SChans = 18, /* side channels: */
  53.     BChans = 15, /* back channels: left surround, right surround */
  54.     BCenter = 1, /* 1 if decoder has back center channel */
  55.     LChans = 1, /* LFE channels */
  56.     XChans = 1, /* scratch space for parsing unused channels */  
  57. #else
  58.     FChans = 3, /* front channels: left, center, right */
  59.     FCenter = 0, /* 1 if decoder has front center channel */
  60.     SChans = 2, /* side channels: */
  61.     BChans = 1, /* back channels: left surround, right surround */
  62.     BCenter = 0, /* 1 if decoder has back center channel */
  63.     LChans = 1, /* LFE channels */
  64.     XChans = 1, /* scratch space for parsing unused channels */  
  65. #endif
  66.     
  67.     Chans = FChans + SChans + BChans + LChans + XChans
  68. };
  69. /* #define is required in order to use these args in #if () directive */
  70. #if 0
  71. #define ICChans 1 /* independently switched coupling channels */
  72. #define DCChans 2 /* dependently switched coupling channels */
  73. #define XCChans 1 /* scratch space for parsing unused coupling channels */
  74. #define CChans (ICChans + DCChans + XCChans)
  75. #else
  76. #define ICChans 0
  77. #define DCChans 0
  78. #define XCChans 0
  79. #define CChans 0
  80. #endif
  81. enum
  82. {
  83.     /* block switch windows for single channels or channel pairs */
  84.     Winds = Chans,
  85.     
  86.     /* average channel block length, bytes */
  87.     Avjframe = 341,
  88.     TEXP = 128, /* size of exp cache table */
  89.     MAX_IQ_TBL = 8192+15, /* size of inv quant table */
  90.     MAXFFT = LN4,
  91.     XXXXX
  92. };
  93. typedef struct
  94. {
  95.     int     islong; /* true if long block */
  96.     int     nsbk; /* sub-blocks (SB) per block */
  97.     int     bins_per_bk; /* coef's per block */
  98.     int     sfb_per_bk; /* sfb per block */
  99.     int     bins_per_sbk[MAX_SBK]; /* coef's per SB */
  100.     int     sfb_per_sbk[MAX_SBK]; /* sfb per SB */
  101.     int     sectbits[MAX_SBK];
  102.     int   *sbk_sfb_top[MAX_SBK]; /* top coef per sfb per SB */
  103.     int   *sfb_width_128; /* sfb width for short blocks */
  104.     int   bk_sfb_top[200]; /* cum version of above */
  105.     int     num_groups;
  106.     int   group_len[8];
  107.     int   group_offs[8];
  108. } Info;
  109. typedef struct {
  110.     int samp_rate;
  111.     int nsfb1024;
  112.     int *SFbands1024;
  113.     int nsfb128;
  114.     int *SFbands128;
  115. } SR_Info;
  116. typedef struct
  117. {
  118.     byte    this_bk;
  119.     byte    prev_bk;
  120. } Wnd_Shape;
  121. typedef struct
  122. {
  123.     int len;
  124.     unsigned long cw;
  125. char x, y, v, w;
  126. } Huffman;
  127. typedef struct
  128. {
  129.     int len;
  130.     unsigned long cw;
  131. int scl;
  132. } Huffscl;
  133. typedef struct
  134. {
  135. int dim;
  136.     int signed_cb;
  137.     Huffman *hcw;
  138. } Hcb;
  139. typedef struct
  140. {
  141.     int present; /* channel present */
  142.     int tag; /* element tag */
  143.     int cpe; /* 0 if single channel, 1 if channel pair */
  144.     int common_window; /* 1 if common window for cpe */
  145.     int ch_is_left; /* 1 if left channel of cpe */
  146.     int paired_ch; /* index of paired channel in cpe */
  147.     int widx; /* window element index for this channel */
  148.     int is_present; /* intensity stereo is used */
  149.     int ncch; /* number of coupling channels for this ch */
  150.     char *fext; /* filename extension */
  151. } Ch_Info;
  152. typedef struct {
  153.     int nch; /* total number of audio channels */
  154.     int nfsce; /* number of front SCE's pror to first front CPE */
  155.     int nfch; /* number of front channels */
  156.     int nsch; /* number of side channels */
  157.     int nbch; /* number of back channels */
  158.     int nlch; /* number of lfe channels */
  159.     int ncch; /* number of valid coupling channels */
  160.     int cch_tag[(1<<LEN_TAG)]; /* tags of valid CCE's */
  161.     int object_type;
  162.     int sampling_rate_idx;
  163.     Ch_Info ch_info[Chans];
  164. } MC_Info;
  165. typedef struct {
  166.     int num_ele;
  167.     int ele_is_cpe[(1<<LEN_TAG)];
  168.     int ele_tag[(1<<LEN_TAG)];
  169. } EleList;
  170. typedef struct {
  171.     int present;
  172.     int ele_tag;
  173.     int pseudo_enab;
  174. } MIXdown;
  175. typedef struct {
  176.     int object_type;
  177.     int sampling_rate_idx;
  178.     EleList front;
  179.     EleList side;
  180.     EleList back;
  181.     EleList lfe;
  182.     EleList data;
  183.     EleList coupling;
  184.     MIXdown mono_mix;
  185.     MIXdown stereo_mix;
  186.     MIXdown matrix_mix;
  187.     char comments[(1<<LEN_PC_COMM)+1];
  188.     long    buffer_fullness; /* put this transport level info here */
  189. } ProgConfig;
  190. typedef struct {
  191.     char    adif_id[LEN_ADIF_ID+1];
  192.     int     copy_id_present;
  193.     char    copy_id[LEN_COPYRT_ID+1];
  194.     int     original_copy;
  195.     int     home;
  196.     int     bitstream_type;
  197.     long    bitrate;
  198.     int     num_pce;
  199.     int     prog_tags[(1<<LEN_TAG)];
  200. } ADIF_Header;
  201. typedef struct {
  202.     int copy_id_bit;
  203.     int copy_id_start;
  204. int frame_length;
  205. int buffer_fullness;
  206. int raw_blocks;
  207. } ADTS_Variable;
  208. typedef struct {
  209. int ID;
  210. int layer;
  211. int protection_absent;
  212. int object_type;
  213. int sampling_rate_idx;
  214. int private_bit;
  215. int channel_configuration;
  216. int original_copy;
  217. int home;
  218. int emphasis;
  219. } ADTS_Fixed;
  220. typedef struct {
  221. ADTS_Fixed fixed;
  222. ADTS_Variable variable;
  223. int adts_error_check;
  224. } ADTS_Header;
  225. struct Pulse_Info
  226. {
  227.     int pulse_data_present;
  228.     int number_pulse;
  229.     int pulse_start_sfb;
  230.     int pulse_position[NUM_PULSE_LINES];
  231.     int pulse_offset[NUM_PULSE_LINES];
  232.     int pulse_amp[NUM_PULSE_LINES];
  233. };
  234. extern Huffman book1[];
  235. extern Huffman book2[];
  236. extern Huffman book3[];
  237. extern Huffman book4[];
  238. extern Huffman book5[];
  239. extern Huffman book6[];
  240. extern Huffman book7[];
  241. extern Huffman book8[];
  242. extern Huffman book9[];
  243. extern Huffman book10[];
  244. extern Huffman book11[];
  245. extern Huffscl bookscl[];
  246. extern Hcb book[NSPECBOOKS+2];
  247. extern int sfbwidth128[];
  248. extern SR_Info samp_rate_info[];
  249. extern int tns_max_bands_tbl[(1<<LEN_SAMP_IDX)][4];
  250. extern const int SampleRates[];
  251. extern int pred_max_bands_tbl[(1<<LEN_SAMP_IDX)];
  252. #ifdef WIN32
  253.   #pragma pack(push, 8)
  254.   #ifndef FAADAPI
  255.     #define FAADAPI __stdcall
  256.   #endif
  257. #else
  258.   #ifndef FAADAPI
  259.     #define FAADAPI
  260.   #endif
  261. #endif
  262. #define FAAD_OK 0
  263. #define FAAD_OK_CHUPDATE 1
  264. #define FAAD_ERROR 2
  265. #define FAAD_FATAL_ERROR 3
  266. typedef void *faacProgConfig;
  267. typedef struct faacDecConfiguration
  268. {
  269.   unsigned int defObjectType;
  270.   unsigned int defSampleRate;
  271. } faacDecConfiguration, *faacDecConfigurationPtr;
  272. typedef struct {
  273. int isMpeg4;
  274. int frameNum;
  275. int pceChannels;
  276. int numChannels;
  277.   int chans_inited;
  278. /* Configuration data */
  279. faacDecConfiguration config;
  280. bitfile ld;
  281. int adif_header_present;
  282. int adts_header_present;
  283. ADIF_Header adif_header;
  284. ADTS_Header adts_header;
  285. /* decoder data */
  286. Float *coef[Chans];
  287. Float *data[Chans];
  288. Float *state[Chans];
  289. byte hasmask[Winds];
  290. byte *mask[Winds];
  291. byte *group[Chans];
  292. byte wnd[Chans];
  293. byte max_sfb[Chans];
  294. byte *cb_map[Chans];
  295.     int *lpflag[Chans];
  296. int *prstflag[Chans];
  297. /* prediction */
  298. int last_rstgrp_num[Chans];
  299. PRED_STATUS *sp_status[Chans];
  300. float *mnt_table;
  301. float *exp_table;
  302. int warn_flag;
  303. /* long term prediction */
  304. NOK_LT_PRED_STATUS *nok_lt_status[Chans];
  305. /* Pulse coding */
  306. struct Pulse_Info pulse_info;
  307. MC_Info mc_info;
  308. MC_Info save_mc_info;
  309. int default_config;
  310. int current_program;
  311. ProgConfig prog_config;
  312. Info eight_short_info;
  313. Info *win_seq_info[NUM_WIN_SEQ];
  314. Info *winmap[NUM_WIN_SEQ];
  315. Info only_long_info;
  316. Wnd_Shape wnd_shape[Chans];
  317. int *factors[Chans];
  318. TNS_frame_info *tns[Chans];
  319. int dolbyShortOffset_f2t;
  320. int dolbyShortOffset_t2f;
  321. int first_cpe;
  322. /* PNS data */
  323.     long cur_noise_state;
  324.     long noise_state_save[MAXBANDS];
  325.     int lp_store[MAXBANDS];
  326. /* tables */
  327. Float *iq_exp_tbl;
  328. Float *exptable;
  329. /* FFT data */
  330. int *unscambled64;
  331. int *unscambled512;
  332. } faacDecStruct, *faacDecHandle;
  333. faacDecHandle FAADAPI faacDecOpen(void);
  334. faacDecConfigurationPtr FAADAPI faacDecGetCurrentConfiguration(faacDecHandle hDecoder);
  335. int FAADAPI faacDecSetConfiguration(faacDecHandle hDecoder,
  336. faacDecConfigurationPtr config);
  337. int FAADAPI faacDecInit(faacDecHandle hDecoder,
  338. unsigned char *buffer,
  339. unsigned long *samplerate,
  340. unsigned long *channels);
  341. int FAADAPI faacDecGetProgConfig(faacDecHandle hDecoder,
  342.  faacProgConfig *progConfig);
  343. int FAADAPI faacDecDecode(faacDecHandle hDecoder,
  344.   unsigned char *buffer,
  345.   unsigned long *bytesconsumed,
  346.   short *sample_buffer,
  347.   unsigned long *samples);
  348. void FAADAPI faacDecClose(faacDecHandle hDecoder);
  349. #include "nok_lt_prediction.h"
  350. #include "port.h"
  351. #ifdef __cplusplus
  352. }
  353. #endif
  354. #endif /* _all_h_ */