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

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, 508-493-2241, e-mail: pan@gauss.enet.dec.com          *
  10.  *                                                                    *
  11.  * VERSION 4.0                                                        *
  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. /***********************************************************************
  53. *
  54. *  Global Conditional Compile Switches
  55. *
  56. ***********************************************************************/
  57. #define      UNIX            /* Unix conditional compile switch */
  58. /* #define      MACINTOSH       /* Macintosh conditional compile switch */
  59. /* #define      MS_DOS          /* IBM PC conditional compile switch */
  60. /* #define      MSC60           /* Compiled for MS_DOS with MSC v6.0 */
  61. #define      AIX             /* AIX conditional compile switch    */
  62. /* #define      CONVEX          /* CONVEX conditional compile switch */
  63. #if defined(MSC60) 
  64. #ifndef MS_DOS
  65. #define MS_DOS
  66. #endif
  67. #ifndef PROTO_ARGS
  68. #define PROTO_ARGS
  69. #endif
  70. #endif
  71. #ifdef  UNIX
  72. #define         TABLES_PATH     "tables"  /* to find data files */
  73. /* name of environment variable holding path of table files */
  74. #define         MPEGTABENV      "MPEGTABLES"
  75. #define         PATH_SEPARATOR  "/"        /* how to build paths */
  76. #endif  /* UNIX */
  77. #ifdef  MACINTOSH
  78. /* #define      TABLES_PATH ":tables:"  /* where to find data files */
  79. #endif  /* MACINTOSH */
  80. /* 
  81.  * Don't define FAR to far unless you're willing to clean up the 
  82.  * prototypes
  83.  */
  84. #define FAR /*far*/
  85. #ifdef __STDC__
  86. #ifndef PROTO_ARGS
  87. #define PROTO_ARGS
  88. #endif
  89. #endif
  90. #ifdef CONVEX
  91. #define SEEK_SET        0
  92. #define SEEK_CUR        1
  93. #define SEEK_END        2
  94. #endif
  95. /* MS_DOS and VMS do not define TABLES_PATH, so OpenTableFile will default
  96.    to finding the data files in the default directory */
  97. /***********************************************************************
  98. *
  99. *  Global Include Files
  100. *
  101. ***********************************************************************/
  102. #include        <stdio.h>
  103. #include        <string.h>
  104. #include        <math.h>
  105. #ifdef  UNIX
  106. #include        <unistd.h>
  107. #endif  /* UNIX */
  108. #ifdef  MACINTOSH
  109. #include        <stdlib.h>
  110. #include        <console.h>
  111. #endif  /* MACINTOSH */
  112. #ifdef  MS_DOS
  113. #include        <stdlib.h>
  114. #ifdef MSC60
  115. #include        <memory.h>
  116. #else
  117. #include        <alloc.h>
  118. #include        <mem.h>
  119. #endif  /* MSC60 */
  120. #endif  /* MS_DOS */
  121. /***********************************************************************
  122. *
  123. *  Global Definitions
  124. *
  125. ***********************************************************************/
  126. /* General Definitions */
  127. #ifdef  MS_DOS
  128. #define         FLOAT                   double
  129. #else
  130. #define         FLOAT                   float
  131. #endif
  132. #define         FALSE                   0
  133. #define         TRUE                    1
  134. #define         NULL_CHAR               ''
  135. #define         MAX_U_32_NUM            0xFFFFFFFF
  136. #define         PI                      3.14159265358979
  137. #define         PI4                     PI/4
  138. #define         PI64                    PI/64
  139. #define         LN_TO_LOG10             0.2302585093
  140. #define         VOL_REF_NUM             0
  141. #define         MPEG_AUDIO_ID           1
  142. #define         MAC_WINDOW_SIZE         24
  143. #define         MONO                    1
  144. #define         STEREO                  2
  145. #define         BITS_IN_A_BYTE          8
  146. #define         WORD                    16
  147. #define         MAX_NAME_SIZE           81
  148. #define         SBLIMIT                 32
  149. #define         FFT_SIZE                1024
  150. #define         HAN_SIZE                512
  151. #define         SCALE_BLOCK             12
  152. #define         SCALE_RANGE             64
  153. #define         SCALE                   32768
  154. #define         CRC16_POLYNOMIAL        0x8005
  155. /* MPEG Header Definitions - Mode Values */
  156. #define         MPG_MD_STEREO           0
  157. #define         MPG_MD_JOINT_STEREO     1
  158. #define         MPG_MD_DUAL_CHANNEL     2
  159. #define         MPG_MD_MONO             3
  160. /* AIFF Definitions */
  161. /* 
  162.  * Note:  The value of a multi-character constant
  163.  *        is implementation-defined.
  164.  */
  165. #if !defined(MS_DOS) && !defined(AIX)  
  166. #define         IFF_LONG
  167. #define         IFF_ID_FORM             'FORM'
  168. #define         IFF_ID_AIFF             'AIFF'
  169. #define         IFF_ID_COMM             'COMM'
  170. #define         IFF_ID_SSND             'SSND'
  171. #define         IFF_ID_MPEG             'MPEG'
  172. #else
  173. #define         IFF_ID_FORM             "FORM"
  174. #define         IFF_ID_AIFF             "AIFF"
  175. #define         IFF_ID_COMM             "COMM"
  176. #define         IFF_ID_SSND             "SSND"
  177. #define         IFF_ID_MPEG             "MPEG"
  178. #endif
  179. /* "bit_stream.h" Definitions */
  180. #define         MINIMUM         4    /* Minimum size of the buffer in bytes */
  181. #define         MAX_LENGTH      32   /* Maximum length of word written or
  182.                                         read from bit stream */
  183. #define         READ_MODE       0
  184. #define         WRITE_MODE      1
  185. #define         ALIGNING        8
  186. #define         BINARY          0
  187. #define         ASCII           1
  188. #define         BS_FORMAT       BINARY /* BINARY or ASCII = 2x bytes */
  189. #define         BUFFER_SIZE     4096
  190. #define         MIN(A, B)       ((A) < (B) ? (A) : (B))
  191. #define         MAX(A, B)       ((A) > (B) ? (A) : (B))
  192. /***********************************************************************
  193. *
  194. *  Global Type Definitions
  195. *
  196. ***********************************************************************/
  197. /* Structure for Reading Layer II Allocation Tables from File */
  198. typedef struct {
  199.     unsigned int    steps;
  200.     unsigned int    bits;
  201.     unsigned int    group;
  202.     unsigned int    quant;
  203. } sb_alloc, *alloc_ptr;
  204. typedef sb_alloc        al_table[SBLIMIT][16];
  205. /* Header Information Structure */
  206. typedef struct {
  207.     int version;
  208.     int lay;
  209.     int error_protection;
  210.     int bitrate_index;
  211.     int sampling_frequency;
  212.     int padding;
  213.     int extension;
  214.     int mode;
  215.     int mode_ext;
  216.     int copyright;
  217.     int original;
  218.     int emphasis;
  219. } layer, *the_layer;
  220. /* Parent Structure Interpreting some Frame Parameters in Header */
  221. typedef struct {
  222.     layer       *header;        /* raw header information */
  223.     int         actual_mode;    /* when writing IS, may forget if 0 chs */
  224.     al_table    *alloc;         /* bit allocation table read in */
  225.     int         tab_num;        /* number of table as loaded */
  226.     int         stereo;         /* 1 for mono, 2 for stereo */
  227.     int         jsbound;        /* first band of joint stereo coding */
  228.     int         sblimit;        /* total number of sub bands */
  229. } frame_params;
  230. /* Double and SANE Floating Point Type Definitions */
  231. typedef struct  IEEE_DBL_struct {
  232.     unsigned long   hi;
  233.     unsigned long   lo;
  234. } IEEE_DBL;
  235. typedef struct  SANE_EXT_struct {
  236.     unsigned long   l1;
  237.     unsigned long   l2;
  238.     unsigned short  s1;
  239. } SANE_EXT;
  240. /* AIFF Type Definitions */
  241. typedef char    ID[4];
  242. typedef struct  ChunkHeader_struct {
  243.     ID      ckID;
  244.     long    ckSize;
  245. } ChunkHeader;
  246. typedef struct  Chunk_struct {
  247.     ID      ckID;
  248.     long    ckSize;
  249.     ID      formType;
  250. } Chunk;
  251. typedef struct  CommonChunk_struct {
  252.     ID              ckID;
  253.     long            ckSize;
  254.     short           numChannels;
  255.     unsigned long   numSampleFrames;
  256.     short           sampleSize;
  257.     char            sampleRate[10];
  258. } CommonChunk;
  259. typedef struct  SoundDataChunk_struct {
  260.     ID              ckID;
  261.     long            ckSize;
  262.     unsigned long   offset;
  263.     unsigned long   blockSize;
  264. } SoundDataChunk;
  265. typedef struct  blockAlign_struct {
  266.     unsigned long   offset;
  267.     unsigned long   blockSize;
  268. } blockAlign;
  269. typedef struct  IFF_AIFF_struct {
  270.     short           numChannels;
  271.     unsigned long   numSampleFrames;
  272.     short           sampleSize;
  273.     double          sampleRate;
  274.     unsigned long   sampleType;
  275.     blockAlign      blkAlgn;
  276. } IFF_AIFF;
  277. /* "bit_stream.h" Type Definitions */
  278. typedef struct  bit_stream_struc {
  279.     FILE        *pt;            /* pointer to bit stream device */
  280.     unsigned char *buf;         /* bit stream buffer */
  281.     int         buf_size;       /* size of buffer (in number of bytes) */
  282.     long        totbit;         /* bit counter of bit stream */
  283.     int         buf_byte_idx;   /* pointer to top byte in buffer */
  284.     int         buf_bit_idx;    /* pointer to top bit of top byte in buffer */
  285.     int         mode;           /* bit stream open in read or write mode */
  286.     int         eob;            /* end of buffer index */
  287.     int         eobs;           /* end of bit stream flag */
  288.     char        format;
  289.     
  290.     /* format of file in rd mode (BINARY/ASCII) */
  291. } Bit_stream_struc;
  292. /***********************************************************************
  293. *
  294. *  Global Variable External Declarations
  295. *
  296. ***********************************************************************/
  297. extern char     *mode_names[4];
  298. extern char     *layer_names[3];
  299. extern double   s_freq[4];
  300. extern int      bitrate[3][15];
  301. extern double FAR multiple[64];
  302. /***********************************************************************
  303. *
  304. *  Global Function Prototype Declarations
  305. *
  306. ***********************************************************************/
  307. /* The following functions are in the file "common.c" */
  308. #ifdef  PROTO_ARGS
  309. extern FILE           *OpenTableFile(char*);
  310. extern int            read_bit_alloc(int, al_table*);
  311. extern int            pick_table(frame_params*);
  312. extern int            js_bound(int, int);
  313. extern void           hdr_to_frps(frame_params*);
  314. extern void           WriteHdr(frame_params*, FILE*);
  315. extern void           WriteBitAlloc(unsigned int[2][SBLIMIT], frame_params*,
  316.                         FILE*);
  317. extern void           WriteScale(unsigned int[2][SBLIMIT],
  318.                         unsigned int[2][SBLIMIT], unsigned int[2][3][SBLIMIT],
  319.                         frame_params*, FILE*);
  320. extern void           WriteSamples(int, unsigned int FAR [SBLIMIT],
  321.                         unsigned int[SBLIMIT], frame_params*, FILE*);
  322. extern int            NumericQ(char*);
  323. extern int            BitrateIndex(int, int);
  324. extern int            SmpFrqIndex(long);
  325. extern int            memcheck(char*, int, int);
  326. extern void           FAR *mem_alloc(unsigned long, char*);
  327. extern void           mem_free(void**);
  328. extern void           double_to_extended(double*, char[10]);
  329. extern void           extended_to_double(char[10], double*);
  330. extern int            aiff_read_headers(FILE*, IFF_AIFF*);
  331. extern int            aiff_seek_to_sound_data(FILE*);
  332. extern int            aiff_write_headers(FILE*, IFF_AIFF*);
  333. extern int            refill_buffer(Bit_stream_struc*);
  334. extern void           empty_buffer(Bit_stream_struc*, int);
  335. extern void           open_bit_stream_w(Bit_stream_struc*, char*, int);
  336. extern void           open_bit_stream_r(Bit_stream_struc*, char*, int);
  337. extern void           close_bit_stream_r(Bit_stream_struc*);
  338. extern void           close_bit_stream_w(Bit_stream_struc*);
  339. extern void           alloc_buffer(Bit_stream_struc*, int);
  340. extern void           desalloc_buffer(Bit_stream_struc*);
  341. extern void           back_track_buffer(Bit_stream_struc*, int);
  342. extern unsigned int   get1bit(Bit_stream_struc*);
  343. extern void           put1bit(Bit_stream_struc*, int);
  344. extern unsigned long  look_ahead(Bit_stream_struc*, int);
  345. extern unsigned long  getbits(Bit_stream_struc*, int);
  346. extern void           putbits(Bit_stream_struc*, unsigned int, int);
  347. extern void           byte_ali_putbits(Bit_stream_struc*, unsigned int, int);
  348. extern unsigned long  byte_ali_getbits(Bit_stream_struc*, int);
  349. extern unsigned long  sstell(Bit_stream_struc*);
  350. extern int            end_bs(Bit_stream_struc*);
  351. extern int            seek_sync(Bit_stream_struc*, long, int);
  352. extern void           I_CRC_calc(frame_params*, unsigned int[2][SBLIMIT],
  353.                         unsigned int*);
  354. extern void           II_CRC_calc(frame_params*, unsigned int[2][SBLIMIT],
  355.                         unsigned int[2][SBLIMIT], unsigned int*);
  356. extern void           update_CRC(unsigned int, unsigned int, unsigned int*);
  357. extern void           read_absthr(FLOAT*, int);
  358. #ifdef  MACINTOSH
  359. extern void           set_mac_file_attr(char[MAX_NAME_SIZE], short, OsType,
  360.                         OsType);
  361. #endif
  362. #ifdef MS_DOS
  363. extern char           *new_ext(char *filename, char *extname); 
  364. #endif
  365. #else
  366. extern FILE           *OpenTableFile();
  367. extern int            read_bit_alloc();
  368. extern int            pick_table();
  369. extern int            js_bound();
  370. extern void           hdr_to_frps();
  371. extern void           WriteHdr();
  372. extern void           WriteBitAlloc();
  373. extern void           WriteScale();
  374. extern void           WriteSamples();
  375. extern int            NumericQ();
  376. extern int            BitrateIndex();
  377. extern int            SmpFrqIndex();
  378. extern int            memcheck();
  379. extern void           FAR *mem_alloc();
  380. extern void           mem_free();
  381. extern void           double_to_extended();
  382. extern void           extended_to_double();
  383. extern int            aiff_read_headers();
  384. extern int            aiff_seek_to_sound_data();
  385. extern int            aiff_write_headers();
  386. extern int            refill_buffer();
  387. extern void           empty_buffer();
  388. extern void           open_bit_stream_w();
  389. extern void           open_bit_stream_r();
  390. extern void           close_bit_stream_r();
  391. extern void           close_bit_stream_w();
  392. extern void           alloc_buffer();
  393. extern void           desalloc_buffer();
  394. extern void           back_track_buffer();
  395. extern unsigned int   get1bit();
  396. extern void           put1bit();
  397. extern unsigned long  look_ahead();
  398. extern unsigned long  getbits();
  399. extern void           putbits();
  400. extern void           byte_ali_putbits();
  401. extern unsigned long  byte_ali_getbits();
  402. extern unsigned long  sstell();
  403. extern int            end_bs();
  404. extern int            seek_sync();
  405. extern void           I_CRC_calc();
  406. extern void           II_CRC_calc();
  407. extern void           update_CRC();
  408. extern void           read_absthr();
  409. #ifdef MS_DOS
  410. extern char           *new_ext(); 
  411. #endif
  412. #endif