COMMON.H
上传用户:dshsh2009
上传日期:2007-01-07
资源大小:155k
文件大小:20k
源码类别:

mpeg/mp3

开发平台:

Unix_Linux

  1. /**********************************************************************
  2. Copyright (c) 1991 MPEG/audio software simulation group, All Rights Reserved
  3. common.h
  4. **********************************************************************/
  5. /**********************************************************************
  6.  * MPEG/audio coding/decoding software, work in progress              *
  7.  *   NOT for public distribution until verified and approved by the   *
  8.  *   MPEG/audio committee.  For further information, please contact   *
  9.  *   Davis Pan, 708-538-5671, e-mail: pan@ukraine.corp.mot.com        *
  10.  *                                                                    *
  11.  * VERSION 4.3                                                        *
  12.  *   changes made since last update:                                  *
  13.  *   date   programmers         comment                               *
  14.  * 2/25/91  Doulas Wong,        start of version 1.0 records          *
  15.  *          Davis Pan                                                 *
  16.  * 5/10/91  W. Joseph Carter    Reorganized & renamed all ".h" files  *
  17.  *                              into "common.h" and "encoder.h".      *
  18.  *                              Ported to Macintosh and Unix.         *
  19.  *                              Added additional type definitions for *
  20.  *                              AIFF, double/SANE and "bitstream.c".  *
  21.  *                              Added function prototypes for more    *
  22.  *                              rigorous type checking.               *
  23.  * 27jun91  dpwe (Aware)        Added "alloc_*" defs & prototypes     *
  24.  *                              Defined new struct 'frame_params'.    *
  25.  *                              Changed info.stereo to info.mode_ext  *
  26.  *                              #define constants for mode types      *
  27.  *                              Prototype arguments if PROTO_ARGS     *
  28.  * 5/28/91  Earle Jennings      added MS_DOS definition               *
  29.  *                              MsDos function prototype declarations *
  30.  * 7/10/91  Earle Jennings      added FLOAT definition as double      *
  31.  *10/ 3/91  Don H. Lee          implemented CRC-16 error protection   *
  32.  * 2/11/92  W. Joseph Carter    Ported new code to Macintosh.  Most   *
  33.  *                              important fixes involved changing     *
  34.  *                              16-bit ints to long or unsigned in    *
  35.  *                              bit alloc routines for quant of 65535 *
  36.  *                              and passing proper function args.     *
  37.  *                              Removed "Other Joint Stereo" option   *
  38.  *                              and made bitrate be total channel     *
  39.  *                              bitrate, irrespective of the mode.    *
  40.  *                              Fixed many small bugs & reorganized.  *
  41.  *                              Modified some function prototypes.    *
  42.  *                              Changed BUFFER_SIZE back to 4096.     *
  43.  * 7/27/92  Michael Li          (re-)Ported to MS-DOS                 *
  44.  * 7/27/92  Masahiro Iwadare    Ported to Convex                      *
  45.  * 8/07/92  mc@tv.tek.com                                             *
  46.  * 8/10/92  Amit Gulati         Ported to the AIX Platform (RS6000)   *
  47.  *                              AIFF string constants redefined       *
  48.  * 8/27/93 Seymour Shlien,      Fixes in Unix and MSDOS ports,        *
  49.  *         Daniel Lauzon, and                                         *
  50.  *         Bill Truerniet                                             *
  51.  *--------------------------------------------------------------------*
  52.  * 4/23/92  J. Pineda           Added code for Layer III.             *
  53.  * 11/9/92  Amit Gulati         Added defines for layerIII stereo     *
  54.  *                              modes.                                *
  55.  *  8/24/93 Masahiro Iwadare    Included IS modification in Layer III.*
  56.  *                              Changed for 1 pass decoding.          *
  57.  *  9/07/93 Toshiyuki Ishino    Integrated Layer III with Ver 3.9.    *
  58.  *--------------------------------------------------------------------*
  59.  * 11/20/93 Masahiro Iwadare    Integrated Layer III with Ver 4.0.    *
  60.  *--------------------------------------------------------------------*
  61.  *  7/14/94 Juergen Koller      Fix for HPUX an IRIX in AIFF-Strings  *
  62.  **********************************************************************/
  63. /***********************************************************************
  64. *
  65. *  Global Conditional Compile Switches
  66. *
  67. ***********************************************************************/
  68. /* #define      UNIX            /* Unix conditional compile switch */
  69. /* #define      MACINTOSH       /* Macintosh conditional compile switch */
  70. /* #define      MS_DOS          /* IBM PC conditional compile switch */
  71. /* #define      MSC60           /* Compiled for MS_DOS with MSC v6.0 */
  72. /* #define      AIX             /* AIX conditional compile switch    */
  73. /* #define      CONVEX          /* CONVEX conditional compile switch */
  74. #if defined(MSC60) 
  75. #ifndef MS_DOS
  76. #define MS_DOS
  77. #endif
  78. #ifndef PROTO_ARGS
  79. #define PROTO_ARGS
  80. #endif
  81. #endif
  82. #ifdef  UNIX
  83. #define         TABLES_PATH     "tables"  /* to find data files */
  84. /* name of environment variable holding path of table files */
  85. #define         MPEGTABENV      "MPEGTABLES"
  86. #define         PATH_SEPARATOR  "/"        /* how to build paths */
  87. #endif  /* UNIX */
  88. #ifdef  MACINTOSH
  89. /* #define      TABLES_PATH ":tables:"  /* where to find data files */
  90. #endif  /* MACINTOSH */
  91. /* 
  92.  * Don't define FAR to far unless you're willing to clean up the 
  93.  * prototypes
  94.  */
  95. #define FAR /*far*/
  96. #ifdef __STDC__
  97. #ifndef PROTO_ARGS
  98. #define PROTO_ARGS
  99. #endif
  100. #endif
  101. #ifdef CONVEX
  102. #define SEEK_SET        0
  103. #define SEEK_CUR        1
  104. #define SEEK_END        2
  105. #endif
  106. /* MS_DOS and VMS do not define TABLES_PATH, so OpenTableFile will default
  107.    to finding the data files in the default directory */
  108. /***********************************************************************
  109. *
  110. *  Global Include Files
  111. *
  112. ***********************************************************************/
  113. #include        <stdio.h>
  114. #include        <string.h>
  115. #include        <math.h>
  116. #ifdef  UNIX
  117. #include        <unistd.h>
  118. #endif  /* UNIX */
  119. #ifdef  MACINTOSH
  120. #include        <stdlib.h>
  121. #include        <console.h>
  122. #endif  /* MACINTOSH */
  123. #ifdef  MS_DOS
  124. #include        <stdlib.h>
  125. #ifdef MSC60
  126. #include        <memory.h>
  127. #else
  128. #include        <alloc.h>
  129. #include        <mem.h>
  130. #endif  /* MSC60 */
  131. #endif  /* MS_DOS */
  132. /***********************************************************************
  133. *
  134. *  Global Definitions
  135. *
  136. ***********************************************************************/
  137. /* General Definitions */
  138. #ifdef  MS_DOS
  139. #define         FLOAT                   double
  140. #else
  141. #define         FLOAT                   float
  142. #endif
  143. #define         FALSE                   0
  144. #define         TRUE                    1
  145. #define         NULL_CHAR               ''
  146. #define         MAX_U_32_NUM            0xFFFFFFFF
  147. #define         PI                      3.14159265358979
  148. #define         PI4                     PI/4
  149. #define         PI64                    PI/64
  150. #define         LN_TO_LOG10             0.2302585093
  151. #define         VOL_REF_NUM             0
  152. #define         MPEG_AUDIO_ID           1
  153. #define         MAC_WINDOW_SIZE         24
  154. #define         MONO                    1
  155. #define         STEREO                  2
  156. #define         BITS_IN_A_BYTE          8
  157. #define         WORD                    16
  158. #define         MAX_NAME_SIZE           81
  159. #define         SBLIMIT                 32
  160. #define         SSLIMIT                 18
  161. #define         FFT_SIZE                1024
  162. #define         HAN_SIZE                512
  163. #define         SCALE_BLOCK             12
  164. #define         SCALE_RANGE             64
  165. #define         SCALE                   32768
  166. #define         CRC16_POLYNOMIAL        0x8005
  167. /* MPEG Header Definitions - Mode Values */
  168. #define         MPG_MD_STEREO           0
  169. #define         MPG_MD_JOINT_STEREO     1
  170. #define         MPG_MD_DUAL_CHANNEL     2
  171. #define         MPG_MD_MONO             3
  172. /* Mode Extention */
  173. #define         MPG_MD_LR_LR             0
  174. #define         MPG_MD_LR_I              1
  175. #define         MPG_MD_MS_LR             2
  176. #define         MPG_MD_MS_I              3
  177. /* AIFF Definitions */
  178. /* 
  179.  * Note:  The value of a multi-character constant
  180.  *        is implementation-defined.
  181.  */
  182. #if !defined(MS_DOS) && !defined(AIX) && !defined(__hpux) && !defined(sgi)
  183. #define         IFF_LONG
  184. #define         IFF_ID_FORM             'FORM'
  185. #define         IFF_ID_AIFF             'AIFF'
  186. #define         IFF_ID_COMM             'COMM'
  187. #define         IFF_ID_SSND             'SSND'
  188. #define         IFF_ID_MPEG             'MPEG'
  189. #else
  190. #define         IFF_ID_FORM             "FORM"
  191. #define         IFF_ID_AIFF             "AIFF"
  192. #define         IFF_ID_COMM             "COMM"
  193. #define         IFF_ID_SSND             "SSND"
  194. #define         IFF_ID_MPEG             "MPEG"
  195. #endif
  196. /* "bit_stream.h" Definitions */
  197. #define         MINIMUM         4    /* Minimum size of the buffer in bytes */
  198. #define         MAX_LENGTH      32   /* Maximum length of word written or
  199.                                         read from bit stream */
  200. #define         READ_MODE       0
  201. #define         WRITE_MODE      1
  202. #define         ALIGNING        8
  203. #define         BINARY          0
  204. #define         ASCII           1
  205. #define         BS_FORMAT       ASCII /* BINARY or ASCII = 2x bytes */
  206. #define         BUFFER_SIZE     4096
  207. #define         MIN(A, B)       ((A) < (B) ? (A) : (B))
  208. #define         MAX(A, B)       ((A) > (B) ? (A) : (B))
  209. /***********************************************************************
  210. *
  211. *  Global Type Definitions
  212. *
  213. ***********************************************************************/
  214. /* Structure for Reading Layer II Allocation Tables from File */
  215. typedef struct {
  216.     unsigned int    steps;
  217.     unsigned int    bits;
  218.     unsigned int    group;
  219.     unsigned int    quant;
  220. } sb_alloc, *alloc_ptr;
  221. typedef sb_alloc        al_table[SBLIMIT][16];
  222. /* Header Information Structure */
  223. typedef struct {
  224.     int version;
  225.     int lay;
  226.     int error_protection;
  227.     int bitrate_index;
  228.     int sampling_frequency;
  229.     int padding;
  230.     int extension;
  231.     int mode;
  232.     int mode_ext;
  233.     int copyright;
  234.     int original;
  235.     int emphasis;
  236. } layer, *the_layer;
  237. /* Parent Structure Interpreting some Frame Parameters in Header */
  238. typedef struct {
  239.     layer       *header;        /* raw header information */
  240.     int         actual_mode;    /* when writing IS, may forget if 0 chs */
  241.     al_table    *alloc;         /* bit allocation table read in */
  242.     int         tab_num;        /* number of table as loaded */
  243.     int         stereo;         /* 1 for mono, 2 for stereo */
  244.     int         jsbound;        /* first band of joint stereo coding */
  245.     int         sblimit;        /* total number of sub bands */
  246. } frame_params;
  247. /* Double and SANE Floating Point Type Definitions */
  248. typedef struct  IEEE_DBL_struct {
  249.     unsigned long   hi;
  250.     unsigned long   lo;
  251. } IEEE_DBL;
  252. typedef struct  SANE_EXT_struct {
  253.     unsigned long   l1;
  254.     unsigned long   l2;
  255.     unsigned short  s1;
  256. } SANE_EXT;
  257. /* AIFF Type Definitions */
  258. typedef char    ID[4];
  259. typedef struct  ChunkHeader_struct {
  260.     ID      ckID;
  261.     long    ckSize;
  262. } ChunkHeader;
  263. typedef struct  Chunk_struct {
  264.     ID      ckID;
  265.     long    ckSize;
  266.     ID      formType;
  267. } Chunk;
  268. typedef struct  CommonChunk_struct {
  269.     ID              ckID;
  270.     long            ckSize;
  271.     short           numChannels;
  272.     unsigned long   numSampleFrames;
  273.     short           sampleSize;
  274.     char            sampleRate[10];
  275. } CommonChunk;
  276. typedef struct  SoundDataChunk_struct {
  277.     ID              ckID;
  278.     long            ckSize;
  279.     unsigned long   offset;
  280.     unsigned long   blockSize;
  281. } SoundDataChunk;
  282. typedef struct  blockAlign_struct {
  283.     unsigned long   offset;
  284.     unsigned long   blockSize;
  285. } blockAlign;
  286. typedef struct  IFF_AIFF_struct {
  287.     short           numChannels;
  288.     unsigned long   numSampleFrames;
  289.     short           sampleSize;
  290.     double          sampleRate;
  291.     unsigned long   sampleType;
  292.     blockAlign      blkAlgn;
  293. } IFF_AIFF;
  294. /* "bit_stream.h" Type Definitions */
  295. typedef struct  bit_stream_struc {
  296.     FILE        *pt;            /* pointer to bit stream device */
  297.     unsigned char *buf;         /* bit stream buffer */
  298.     int         buf_size;       /* size of buffer (in number of bytes) */
  299.     long        totbit;         /* bit counter of bit stream */
  300.     int         buf_byte_idx;   /* pointer to top byte in buffer */
  301.     int         buf_bit_idx;    /* pointer to top bit of top byte in buffer */
  302.     int         mode;           /* bit stream open in read or write mode */
  303.     int         eob;            /* end of buffer index */
  304.     int         eobs;           /* end of bit stream flag */
  305.     char        format;
  306.     
  307.     /* format of file in rd mode (BINARY/ASCII) */
  308. } Bit_stream_struc;
  309. /* Layer III side information. */
  310. typedef struct {
  311. unsigned main_data_begin;
  312. unsigned private_bits;
  313. struct {
  314.     unsigned scfsi[4];
  315. struct gr_info_s {
  316. unsigned part2_3_length;
  317. unsigned big_values;
  318. unsigned global_gain;
  319. unsigned scalefac_compress;
  320. unsigned window_switching_flag;
  321. unsigned block_type;
  322. unsigned mixed_block_flag;
  323. unsigned table_select[3];
  324. unsigned subblock_gain[3];
  325. unsigned region0_count;
  326. unsigned region1_count;
  327. unsigned preflag;
  328. unsigned scalefac_scale;
  329. unsigned count1table_select;
  330. } gr[2];
  331. } ch[2];
  332. } III_side_info_t;
  333. /* Layer III scale factors. */
  334. typedef struct {
  335. int l[23];            /* [cb] */
  336. int s[3][13];         /* [window][cb] */
  337. } III_scalefac_t[2];  /* [ch] */
  338. /***********************************************************************
  339. *
  340. *  Global Variable External Declarations
  341. *
  342. ***********************************************************************/
  343. extern char     *mode_names[4];
  344. extern char     *layer_names[3];
  345. extern double   s_freq[4];
  346. extern int      bitrate[3][15];
  347. extern double FAR multiple[64];
  348. /***********************************************************************
  349. *
  350. *  Global Function Prototype Declarations
  351. *
  352. ***********************************************************************/
  353. /* The following functions are in the file "common.c" */
  354. #ifdef  PROTO_ARGS
  355. extern FILE           *OpenTableFile(char*);
  356. extern int            read_bit_alloc(int, al_table*);
  357. extern int            pick_table(frame_params*);
  358. extern int            js_bound(int, int);
  359. extern void           hdr_to_frps(frame_params*);
  360. extern void           WriteHdr(frame_params*, FILE*);
  361. extern void           WriteBitAlloc(unsigned int[2][SBLIMIT], frame_params*,
  362.                         FILE*);
  363. extern void           WriteScale(unsigned int[2][SBLIMIT],
  364.                         unsigned int[2][SBLIMIT], unsigned int[2][3][SBLIMIT],
  365.                         frame_params*, FILE*);
  366. extern void           WriteSamples(int, unsigned int FAR [SBLIMIT],
  367.                         unsigned int[SBLIMIT], frame_params*, FILE*);
  368. extern int            NumericQ(char*);
  369. extern int            BitrateIndex(int, int);
  370. extern int            SmpFrqIndex(long);
  371. extern int            memcheck(char*, int, int);
  372. extern void           FAR *mem_alloc(unsigned long, char*);
  373. extern void           mem_free(void**);
  374. extern void           double_to_extended(double*, char[10]);
  375. extern void           extended_to_double(char[10], double*);
  376. extern int            aiff_read_headers(FILE*, IFF_AIFF*);
  377. extern int            aiff_seek_to_sound_data(FILE*);
  378. extern int            aiff_write_headers(FILE*, IFF_AIFF*);
  379. extern int            refill_buffer(Bit_stream_struc*);
  380. extern void           empty_buffer(Bit_stream_struc*, int);
  381. extern void           open_bit_stream_w(Bit_stream_struc*, char*, int);
  382. extern void           open_bit_stream_r(Bit_stream_struc*, char*, int);
  383. extern void           close_bit_stream_r(Bit_stream_struc*);
  384. extern void           close_bit_stream_w(Bit_stream_struc*);
  385. extern void           alloc_buffer(Bit_stream_struc*, int);
  386. extern void           desalloc_buffer(Bit_stream_struc*);
  387. extern void           back_track_buffer(Bit_stream_struc*, int);
  388. extern unsigned int   get1bit(Bit_stream_struc*);
  389. extern void           put1bit(Bit_stream_struc*, int);
  390. extern unsigned long  look_ahead(Bit_stream_struc*, int);
  391. extern unsigned long  getbits(Bit_stream_struc*, int);
  392. extern void           putbits(Bit_stream_struc*, unsigned int, int);
  393. extern void           byte_ali_putbits(Bit_stream_struc*, unsigned int, int);
  394. extern unsigned long  byte_ali_getbits(Bit_stream_struc*, int);
  395. extern unsigned long  sstell(Bit_stream_struc*);
  396. extern int            end_bs(Bit_stream_struc*);
  397. extern int            seek_sync(Bit_stream_struc*, long, int);
  398. extern void           I_CRC_calc(frame_params*, unsigned int[2][SBLIMIT],
  399.                         unsigned int*);
  400. extern void           II_CRC_calc(frame_params*, unsigned int[2][SBLIMIT],
  401.                         unsigned int[2][SBLIMIT], unsigned int*);
  402. extern void           update_CRC(unsigned int, unsigned int, unsigned int*);
  403. extern void           read_absthr(FLOAT*, int);
  404. extern unsigned int   hget1bit(); /* MI */
  405. extern unsigned long  hgetbits(int);
  406. extern unsigned long  hsstell();
  407. extern void           hputbuf(unsigned int,int);
  408. #ifdef  MACINTOSH
  409. extern void           set_mac_file_attr(char[MAX_NAME_SIZE], short, OsType,
  410.                         OsType);
  411. #endif
  412. #ifdef MS_DOS
  413. extern char           *new_ext(char *filename, char *extname); 
  414. #endif
  415. #else
  416. extern FILE           *OpenTableFile();
  417. extern int            read_bit_alloc();
  418. extern int            pick_table();
  419. extern int            js_bound();
  420. extern void           hdr_to_frps();
  421. extern void           WriteHdr();
  422. extern void           WriteBitAlloc();
  423. extern void           WriteScale();
  424. extern void           WriteSamples();
  425. extern int            NumericQ();
  426. extern int            BitrateIndex();
  427. extern int            SmpFrqIndex();
  428. extern int            memcheck();
  429. extern void           FAR *mem_alloc();
  430. extern void           mem_free();
  431. extern void           double_to_extended();
  432. extern void           extended_to_double();
  433. extern int            aiff_read_headers();
  434. extern int            aiff_seek_to_sound_data();
  435. extern int            aiff_write_headers();
  436. extern int            refill_buffer();
  437. extern void           empty_buffer();
  438. extern void           open_bit_stream_w();
  439. extern void           open_bit_stream_r();
  440. extern void           close_bit_stream_r();
  441. extern void           close_bit_stream_w();
  442. extern void           alloc_buffer();
  443. extern void           desalloc_buffer();
  444. extern void           back_track_buffer();
  445. extern unsigned int   get1bit();
  446. extern void           put1bit();
  447. extern unsigned long  look_ahead();
  448. extern unsigned long  getbits();
  449. extern void           putbits();
  450. extern void           byte_ali_putbits();
  451. extern unsigned long  byte_ali_getbits();
  452. extern unsigned long  sstell();
  453. extern int            end_bs();
  454. extern int            seek_sync();
  455. extern void           I_CRC_calc();
  456. extern void           II_CRC_calc();
  457. extern void           update_CRC();
  458. extern void           read_absthr();
  459. extern unsigned int   hget1bit();
  460. extern unsigned long  hgetbits();
  461. extern unsigned long  hsstell();
  462. extern void           hputbuf();
  463. #ifdef MS_DOS
  464. extern char           *new_ext(); 
  465. #endif
  466. #endif