COMMON.C
上传用户:njqiyou
上传日期:2007-01-08
资源大小:574k
文件大小:46k
源码类别:

mpeg/mp3

开发平台:

C/C++

  1. /**********************************************************************
  2.  * ISO MPEG Audio Subgroup Software Simulation Group (1996)
  3.  * ISO 13818-3 MPEG-2 Audio Encoder - Lower Sampling Frequency Extension
  4.  *
  5.  * $Id: common.c,v 1.2 1997/01/19 22:28:29 rowlands Exp $
  6.  *
  7.  * $Log: common.c,v $
  8.  * Revision 1.2  1997/01/19 22:28:29  rowlands
  9.  * Layer 3 bug fixes from Seymour Shlien
  10.  *
  11.  * Revision 1.1  1996/02/14 04:04:23  rowlands
  12.  * Initial revision
  13.  *
  14.  * Received from Mike Coleman
  15.  **********************************************************************/
  16. /**********************************************************************
  17.  *   date   programmers         comment                               *
  18.  * 2/25/91  Doulas Wong,        start of version 1.0 records          *
  19.  *          Davis Pan                                                 *
  20.  * 5/10/91  W. Joseph Carter    Created this file for all common      *
  21.  *                              functions and global variables.       *
  22.  *                              Ported to Macintosh and Unix.         *
  23.  *                              Added Jean-Georges Fritsch's          *
  24.  *                              "bitstream.c" package.                *
  25.  *                              Added routines to handle AIFF PCM     *
  26.  *                              sound files.                          *
  27.  *                              Added "mem_alloc()" and "mem_free()"  *
  28.  *                              routines for memory allocation        *
  29.  *                              portability.                          *
  30.  *                              Added routines to convert between     *
  31.  *                              Apple SANE extended floating point    *
  32.  *                              format and IEEE double precision      *
  33.  *                              floating point format.  For AIFF.     *
  34.  * 02jul91 dpwe (Aware Inc)     Moved allocation table input here;    *
  35.  *                              Tables read from subdir TABLES_PATH.  *
  36.  *                              Added some debug printout fns (Write*)*
  37.  * 7/10/91 Earle Jennings       replacement of the one float by FLOAT *
  38.  *                              port to MsDos from MacIntosh version  *
  39.  * 8/ 5/91 Jean-Georges Fritsch fixed bug in open_bit_stream_r()      *
  40.  *10/ 1/91 S.I. Sudharsanan,    Ported to IBM AIX platform.           *
  41.  *         Don H. Lee,                                                *
  42.  *         Peter W. Farrett                                           *
  43.  *10/3/91  Don H. Lee           implemented CRC-16 error protection   *
  44.  *                              newly introduced functions are        *
  45.  *                              I_CRC_calc, II_CRC_calc and           *
  46.  *                              update_CRC. Additions and revisions   *
  47.  *                              are marked with dhl for clarity       *
  48.  *10/18/91 Jean-Georges Fritsch fixed bug in update_CRC(),            *
  49.  *                              II_CRC_calc() and I_CRC_calc()        *
  50.  * 2/11/92  W. Joseph Carter    Ported new code to Macintosh.  Most   *
  51.  *                              important fixes involved changing     *
  52.  *                              16-bit ints to long or unsigned in    *
  53.  *                              bit alloc routines for quant of 65535 *
  54.  *                              and passing proper function args.     *
  55.  *                              Removed "Other Joint Stereo" option   *
  56.  *                              and made bitrate be total channel     *
  57.  *                              bitrate, irrespective of the mode.    *
  58.  *                              Fixed many small bugs & reorganized.  *
  59.  * 3/20/92 Jean-Georges Fritsch  fixed bug in start-of-frame search   *
  60.  * 6/15/92 Juan Pineda          added refill_buffer(bs) "n"           *
  61.  *                              initialization                        *
  62.  * 7/08/92 Susanne Ritscher     MS-DOS, MSC6.0 port fixes             *
  63.  * 7/27/92 Mike Li               (re-)Port to MS-DOS                  *
  64.  * 8/19/92 Soren H. Nielsen     Fixed bug in I_CRC_calc and in        *
  65.  *                              II_CRC_calc.  Added function: new_ext *
  66.  *                              for better MS-DOS compatability       *
  67.  * 3/10/93 Kevin Peterson       changed aiff_read_headers to handle   *
  68.  *                              chunks in any order.  now returns     *
  69.  *                              position of sound data in file.       *
  70.  * 3/31/93 Jens Spille          changed IFF_* string compares to use  *
  71.  *                              strcmp()                              *
  72.  * 5/30/93 Masahiro Iwadare     removed the previous modification     *
  73.  *                              for UNIX.                             *
  74.  * 8/27/93 Seymour Shlien,      Fixes in Unix and MSDOS ports,        *
  75.  *         Daniel Lauzon, and                                         *
  76.  *         Bill Truerniet                                             *
  77.  *--------------------------------------------------------------------*
  78.  *  8/24/93 Masahiro Iwadare    Included IS modification in Layer III.*
  79.  *                              Changed for 1 pass decoding.          *
  80.  *  9/07/93 Toshiyuki Ishino    Integrated Layer III with Ver 3.9.    *
  81.  *--------------------------------------------------------------------*
  82.  * 11/20/93 Masahiro Iwadare    Integrated Layer III with Ver 4.0.    *
  83.  *--------------------------------------------------------------------*
  84.  *  7/14/94 Juergen Koller      rewind of bitbuffer added             *
  85.  *  6/12/95 Soeren H. Nielsen   Bug fix in new_ext().                 *
  86.  *  7/11/95 Soeren H. Nielsen   Changes for MPEG-2 LSF Layer I and II *
  87.  *--------------------------------------------------------------------*
  88.  * 8/02/95  mc@fivebats.com     Added code to determine byte-order,   *
  89.  *                              fixes to AIFF routines. Modified Mac  *
  90.  *                              code to work with new Apple headers   *
  91.  **********************************************************************/
  92. /***********************************************************************
  93. *
  94. *  Global Include Files
  95. *
  96. ***********************************************************************/
  97. #include    "common.h"
  98. #include <string.h> /* 1995-07-11 shn */
  99. #include <ctype.h>
  100. #include <stdlib.h>
  101. /***********************************************************************
  102. *
  103. *  Global Variable Definitions
  104. *
  105. ***********************************************************************/
  106. char *mode_names[4] = { "stereo", "j-stereo", "dual-ch", "single-ch" };
  107. char *layer_names[3] = { "I", "II", "III" };
  108. char *version_names[2] = { "MPEG-2 LSF", "MPEG-1" };
  109. /* 1: MPEG-1, 0: MPEG-2 LSF, 1995-07-11 shn */
  110. double  s_freq[2][4] = {{22.05, 24, 16, 0}, {44.1, 48, 32, 0}};
  111. /* 1: MPEG-1, 0: MPEG-2 LSF, 1995-07-11 shn */
  112. int     bitrate[2][3][15] = {
  113.           {{0,32,48,56,64,80,96,112,128,144,160,176,192,224,256},
  114.            {0,8,16,24,32,40,48,56,64,80,96,112,128,144,160},
  115.            {0,8,16,24,32,40,48,56,64,80,96,112,128,144,160}},
  116.   {{0,32,64,96,128,160,192,224,256,288,320,352,384,416,448},
  117.            {0,32,48,56,64,80,96,112,128,160,192,224,256,320,384},
  118.            {0,32,40,48,56,64,80,96,112,128,160,192,224,256,320}}
  119.         };
  120. double FAR multiple[64] = {
  121. 2.00000000000000, 1.58740105196820, 1.25992104989487,
  122. 1.00000000000000, 0.79370052598410, 0.62996052494744, 0.50000000000000,
  123. 0.39685026299205, 0.31498026247372, 0.25000000000000, 0.19842513149602,
  124. 0.15749013123686, 0.12500000000000, 0.09921256574801, 0.07874506561843,
  125. 0.06250000000000, 0.04960628287401, 0.03937253280921, 0.03125000000000,
  126. 0.02480314143700, 0.01968626640461, 0.01562500000000, 0.01240157071850,
  127. 0.00984313320230, 0.00781250000000, 0.00620078535925, 0.00492156660115,
  128. 0.00390625000000, 0.00310039267963, 0.00246078330058, 0.00195312500000,
  129. 0.00155019633981, 0.00123039165029, 0.00097656250000, 0.00077509816991,
  130. 0.00061519582514, 0.00048828125000, 0.00038754908495, 0.00030759791257,
  131. 0.00024414062500, 0.00019377454248, 0.00015379895629, 0.00012207031250,
  132. 0.00009688727124, 0.00007689947814, 0.00006103515625, 0.00004844363562,
  133. 0.00003844973907, 0.00003051757813, 0.00002422181781, 0.00001922486954,
  134. 0.00001525878906, 0.00001211090890, 0.00000961243477, 0.00000762939453,
  135. 0.00000605545445, 0.00000480621738, 0.00000381469727, 0.00000302772723,
  136. 0.00000240310869, 0.00000190734863, 0.00000151386361, 0.00000120155435,
  137. 1E-20
  138. };
  139. enum byte_order NativeByteOrder = order_unknown;
  140. /***********************************************************************
  141. *
  142. *  Global Function Definitions
  143. *
  144. ***********************************************************************/
  145. /* The system uses a variety of data files.  By opening them via this
  146.    function, we can accommodate various locations. */
  147. FILE *OpenTableFile(name)
  148. char *name;
  149. {
  150.     char fulname[80];
  151.     char *envdir;
  152.     FILE *f;
  153.     
  154.     fulname[0] = '';
  155.     
  156. #ifdef TABLES_PATH
  157.     strcpy(fulname, TABLES_PATH);   /* default relative path for tables */
  158. #endif /* TABLES_PATH */          /* (includes terminal path seperator */
  159.     
  160. #ifdef UNIX                       /* envir. variables for UNIX only */
  161. {
  162.     char *getenv();
  163.     
  164.     envdir = getenv(MPEGTABENV);   /* check for environment */
  165.     if(envdir != NULL)
  166. strcpy(fulname, envdir);
  167.     strcat(fulname, PATH_SEPARATOR);  /* add a "/" on the end */
  168. }
  169. #endif /* UNIX */
  170. strcat(fulname, name);
  171. if( (f=fopen(fulname,"r"))==NULL ) {
  172.     fprintf(stderr,"OpenTable: could not find %sn", fulname);
  173.     
  174. #ifdef UNIX
  175.     if(envdir != NULL)
  176. fprintf(stderr,"Check %s directory '%s'n",MPEGTABENV, envdir);
  177.           else
  178.             fprintf(stderr,"Check local directory './%s' or setenv %sn",
  179.                     TABLES_PATH, MPEGTABENV);
  180. #else /* not unix : no environment variables */
  181. #ifdef TABLES_PATH
  182.             fprintf(stderr,"Check local directory './%s'n",TABLES_PATH);
  183. #endif /* TABLES_PATH */
  184. #endif /* UNIX */
  185.     }
  186.     return f;
  187. }
  188. /***********************************************************************
  189. *
  190. * Read one of the data files ("alloc_*") specifying the bit allocation/
  191. * quatization parameters for each subband in layer II encoding
  192. *
  193. **********************************************************************/
  194. int read_bit_alloc(table, alloc)        /* read in table, return # subbands */
  195. int table;
  196. al_table *alloc;
  197. {
  198.         unsigned int a, b, c, d, i, j;
  199.         FILE *fp;
  200.         char name[16], t[80];
  201.         int sblim;
  202.         strcpy(name, "alloc_0");
  203.         switch (table) {
  204.                 case 0 : name[6] = '0';         break;
  205.                 case 1 : name[6] = '1';         break;
  206.                 case 2 : name[6] = '2';         break;
  207.                 case 3 : name[6] = '3';         break;
  208. case 4 : name[6] = '4'; break; /* LSF, added 1995-07-11 shn */
  209.                 default : name[6] = '0';
  210.         }
  211.         if (!(fp = OpenTableFile(name))) {
  212.                 printf("Please check bit allocation table %sn", name);
  213.                 exit(1);
  214.         }
  215.         printf("using bit allocation table %sn", name);
  216.         fgets(t, 80, fp);
  217.         sscanf(t, "%dn", &sblim);
  218.         while (!feof(fp)) {
  219.                 fgets(t, 80, fp);
  220.                 sscanf(t, "%d %d %d %d %d %dn", &i, &j, &a, &b, &c, &d);
  221.                         (*alloc)[i][j].steps = a;
  222.                         (*alloc)[i][j].bits  = b;
  223.                         (*alloc)[i][j].group = c;
  224.                         (*alloc)[i][j].quant = d;
  225.         }
  226.         fclose(fp);
  227.         return sblim;
  228. }
  229. /***********************************************************************
  230. *
  231. * Using the decoded info the appropriate possible quantization per
  232. * subband table is loaded
  233. *
  234. **********************************************************************/
  235. int pick_table(fr_ps)   /* choose table, load if necess, return # sb's */
  236. frame_params *fr_ps;
  237. {
  238.         int table, lay, ws, bsp, br_per_ch, sfrq;
  239.         int sblim = fr_ps->sblimit;     /* return current value if no load */
  240.         lay = fr_ps->header->lay - 1;
  241.         bsp = fr_ps->header->bitrate_index;
  242.         br_per_ch = bitrate[fr_ps->header->version][lay][bsp] / fr_ps->stereo;
  243.         ws = fr_ps->header->sampling_frequency;
  244.         sfrq = s_freq[fr_ps->header->version][ws];
  245.         /* decision rules refer to per-channel bitrates (kbits/sec/chan) */
  246. if (fr_ps->header->version == MPEG_AUDIO_ID) { /* MPEG-1 */
  247.     if ((sfrq == 48 && br_per_ch >= 56) ||
  248. (br_per_ch >= 56 && br_per_ch <= 80)) table = 0;
  249.     else if (sfrq != 48 && br_per_ch >= 96) table = 1;
  250.     else if (sfrq != 32 && br_per_ch <= 48) table = 2;
  251.     else table = 3;
  252. }
  253. else { /* MPEG-2 LSF */
  254.     table = 4;
  255. }
  256.         if (fr_ps->tab_num != table) {
  257.            if (fr_ps->tab_num >= 0)
  258.               mem_free((void **)&(fr_ps->alloc));
  259.            fr_ps->alloc = (al_table FAR *) mem_alloc(sizeof(al_table),
  260.                                                          "alloc");
  261.            sblim = read_bit_alloc(fr_ps->tab_num = table, fr_ps->alloc);
  262.         }
  263.         return sblim;
  264. }
  265. int js_bound(lay, m_ext)
  266. int lay, m_ext;
  267. {
  268. static int jsb_table[3][4] =  { { 4, 8, 12, 16 }, { 4, 8, 12, 16},
  269.                                 { 0, 4, 8, 16} };  /* lay+m_e -> jsbound */
  270.     if(lay<1 || lay >3 || m_ext<0 || m_ext>3) {
  271.         fprintf(stderr, "js_bound bad layer/modext (%d/%d)n", lay, m_ext);
  272.         exit(1);
  273.     }
  274.     return(jsb_table[lay-1][m_ext]);
  275. }
  276. void hdr_to_frps(fr_ps) /* interpret data in hdr str to fields in fr_ps */
  277. frame_params *fr_ps;
  278. {
  279. layer *hdr = fr_ps->header;     /* (or pass in as arg?) */
  280.     fr_ps->actual_mode = hdr->mode;
  281.     fr_ps->stereo = (hdr->mode == MPG_MD_MONO) ? 1 : 2;
  282.     if (hdr->lay == 2)          fr_ps->sblimit = pick_table(fr_ps);
  283.     else                        fr_ps->sblimit = SBLIMIT;
  284.     if(hdr->mode == MPG_MD_JOINT_STEREO)
  285.         fr_ps->jsbound = js_bound(hdr->lay, hdr->mode_ext);
  286.     else
  287.         fr_ps->jsbound = fr_ps->sblimit;
  288.     /* alloc, tab_num set in pick_table */
  289. }
  290. void WriteHdr(fr_ps, s)
  291. frame_params *fr_ps;
  292. FILE *s;
  293. {
  294. layer *info = fr_ps->header;
  295.    fprintf(s, "HDR: s=FFF, id=%X, l=%X, ep=%s, br=%X, sf=%X, pd=%X, ",
  296.            info->version, info->lay, ((info->error_protection) ? "on" : "off"),
  297.            info->bitrate_index, info->sampling_frequency, info->padding);
  298.    fprintf(s, "pr=%X, m=%X, js=%X, c=%X, o=%X, e=%Xn",
  299.            info->extension, info->mode, info->mode_ext,
  300.            info->copyright, info->original, info->emphasis);
  301.    fprintf(s, "alg.=%s, layer=%s, tot bitrate=%d, sfrq=%.1fn",
  302.            version_names[info->version], layer_names[info->lay-1],
  303.    bitrate[info->version][info->lay-1][info->bitrate_index],
  304.            s_freq[info->version][info->sampling_frequency]);
  305.    fprintf(s, "mode=%s, sblim=%d, jsbd=%d, ch=%dn",
  306.            mode_names[info->mode], fr_ps->sblimit, fr_ps->jsbound, fr_ps->stereo);
  307.    fflush(s);
  308. }
  309. void WriteBitAlloc(bit_alloc, f_p, s)
  310. unsigned int bit_alloc[2][SBLIMIT];
  311. frame_params *f_p;
  312. FILE *s;
  313. {
  314. int i,j;
  315. int st = f_p->stereo;
  316. int sbl = f_p->sblimit;
  317. int jsb = f_p->jsbound;
  318.     fprintf(s, "BITA ");
  319.     for(i=0; i<sbl; ++i) {
  320.         if(i == jsb) fprintf(s,"-");
  321.         for(j=0; j<st; ++j)
  322.             fprintf(s, "%1x", bit_alloc[j][i]);
  323.     }
  324.     fprintf(s, "n");   fflush(s);
  325. }
  326. void WriteScale(bit_alloc, scfsi, scalar, fr_ps, s)
  327. unsigned int bit_alloc[2][SBLIMIT], scfsi[2][SBLIMIT], scalar[2][3][SBLIMIT];
  328. frame_params *fr_ps;
  329. FILE *s;
  330. {
  331. int stereo  = fr_ps->stereo;
  332. int sblimit = fr_ps->sblimit;
  333. int lay     = fr_ps->header->lay;
  334. int i,j,k;
  335.         if(lay == 2) {
  336.             fprintf(s, "SFSI ");
  337.             for (i=0;i<sblimit;i++) for (k=0;k<stereo;k++)
  338.                 if (bit_alloc[k][i])  fprintf(s,"%d",scfsi[k][i]);
  339.             fprintf(s, "nSCFs ");
  340.             for (k=0;k<stereo;k++) {
  341.                 for (i=0;i<sblimit;i++)
  342.                     if (bit_alloc[k][i])
  343.                         switch (scfsi[k][i]) {
  344.                           case 0: for (j=0;j<3;j++)
  345.                                   fprintf(s,"%2d%c",scalar[k][j][i],
  346.                                           (j==2)?';':'-');
  347.                                   break;
  348.                           case 1:
  349.                           case 3: fprintf(s,"%2d-",scalar[k][0][i]);
  350.                                   fprintf(s,"%2d;",scalar[k][2][i]);
  351.                                   break;
  352.                           case 2: fprintf(s,"%2d;",scalar[k][0][i]);
  353.                         }
  354.                 fprintf(s, "n");
  355.             }
  356.         }
  357.         else{   /* lay == 1 */
  358.             fprintf(s, "SCFs ");
  359.             for (i=0;i<sblimit;i++) for (k=0;k<stereo;k++)
  360.                 if (bit_alloc[k][i])  fprintf(s,"%2d;",scalar[k][0][i]);
  361.             fprintf(s, "n");
  362.         }
  363. }
  364. void WriteSamples(ch, sample, bit_alloc, fr_ps, s)
  365. int ch;
  366. unsigned int FAR sample[SBLIMIT];
  367. unsigned int bit_alloc[SBLIMIT];
  368. frame_params *fr_ps;
  369. FILE *s;
  370. {
  371. int i;
  372. int stereo = fr_ps->stereo;
  373. int sblimit = fr_ps->sblimit;
  374.         fprintf(s, "SMPL ");
  375.         for (i=0;i<sblimit;i++)
  376.                 if ( bit_alloc[i] != 0)
  377.                     fprintf(s, "%d:", sample[i]);
  378.         if(ch==(stereo-1) )     fprintf(s, "n");
  379.         else                    fprintf(s, "t");
  380. }
  381. int NumericQ(s) /* see if a string lookd like a numeric argument */
  382. char *s;
  383. {
  384. char    c;
  385.     while( (c = *s++)!='' && isspace((int)c)) /* strip leading ws */
  386.         ;
  387.     if( c == '+' || c == '-' )
  388.         c = *s++;               /* perhaps skip leading + or - */
  389.     return isdigit((int)c);
  390. }
  391. int BitrateIndex(layr, bRate, version)   /* convert bitrate in kbps to index */
  392. int     layr;           /* 1 or 2 */
  393. int     bRate;          /* legal rates from 32 to 448 */
  394. int version; /* MPEG-1 or MPEG-2 LSF */
  395. {
  396. int     index = 0;
  397. int     found = 0;
  398.     while(!found && index<15)   {
  399.         if(bitrate[version][layr-1][index] == bRate)
  400.             found = 1;
  401.         else
  402.             ++index;
  403.     }
  404.     if(found)
  405.         return(index);
  406.     else {
  407.         fprintf(stderr, "BitrateIndex: %d (layer %d) is not a legal bitraten",
  408.                 bRate, layr);
  409.         return(-1);     /* Error! */
  410.     }
  411. }
  412. int SmpFrqIndex(sRate, version)  /* convert samp frq in Hz to index */
  413. long sRate;             /* legal rates 16000, 22050, 24000, 32000, 44100, 48000 */
  414. int  *version;
  415. {
  416.     if (sRate == 44100L) {
  417.         *version = MPEG_AUDIO_ID; return(0);
  418.     }
  419.     else if (sRate == 48000L) {
  420.         *version = MPEG_AUDIO_ID; return(1);
  421.     }
  422.     else if (sRate == 32000L) {
  423.         *version = MPEG_AUDIO_ID; return(2);
  424.     }
  425.     else if (sRate == 24000L) {
  426.         *version = MPEG_PHASE2_LSF; return(1);
  427.     }
  428.     else if (sRate == 22050L) {
  429.         *version = MPEG_PHASE2_LSF; return(0);
  430.     }
  431.     else if (sRate == 16000L) {
  432.         *version = MPEG_PHASE2_LSF; return(2);
  433.     }
  434.     else {
  435.         fprintf(stderr, "SmpFrqIndex: %ld is not a legal sample raten", sRate);
  436.         return(-1);     /* Error! */
  437.     }
  438. }
  439. /*******************************************************************************
  440. *
  441. *  Allocate number of bytes of memory equal to "block".
  442. *
  443. *******************************************************************************/
  444. void  FAR *mem_alloc(block, item)
  445. unsigned long   block;
  446. char            *item;
  447. {
  448.     void    *ptr;
  449. #ifdef  MACINTOSH
  450.     ptr = NewPtr(block);
  451. #endif
  452. #ifdef MSC60
  453.     /*ptr = (void FAR *) _fmalloc((unsigned int)block);*/ /* far memory, 92-07-08 sr */
  454.     ptr = (void FAR *) malloc((unsigned int)block); /* far memory, 93-08-24 ss */
  455. #endif
  456. #if ! defined (MACINTOSH) && ! defined (MSC60)
  457.     ptr = (void FAR *) malloc(block);
  458. #endif
  459.     if (ptr != NULL){
  460. #ifdef  MSC60
  461.         _fmemset(ptr, 0, (unsigned int)block); /* far memory, 92-07-08 sr */
  462. #else
  463.         memset(ptr, 0, block);
  464. #endif
  465.     }
  466.     else{
  467.         printf("Unable to allocate %sn", item);
  468.         exit(0);
  469.     }
  470.     return(ptr);
  471. }
  472. /****************************************************************************
  473. *
  474. *  Free memory pointed to by "*ptr_addr".
  475. *
  476. *****************************************************************************/
  477. void    mem_free(ptr_addr)
  478. void    **ptr_addr;
  479. {
  480.     if (*ptr_addr != NULL){
  481. #ifdef  MACINTOSH
  482.         DisposPtr(*ptr_addr);
  483. #else
  484.         free(*ptr_addr);
  485. #endif
  486.         *ptr_addr = NULL;
  487.     }
  488. }
  489. /*******************************************************************************
  490. *
  491. *  Check block of memory all equal to a single byte, else return FALSE
  492. *
  493. *******************************************************************************/
  494. int memcheck(array, test, num)
  495. char *array;
  496. int test;       /* but only tested as a char (bottom 8 bits) */
  497. int num;
  498. {
  499.  int i=0;
  500.    while (array[i] == test && i<num) i++;
  501.    if (i==num) return TRUE;
  502.    else return FALSE;
  503. }
  504. /*****************************************************************************
  505. *
  506. *  Routines to determine byte order and swap bytes
  507. *
  508. *****************************************************************************/
  509. enum byte_order DetermineByteOrder()
  510. {
  511.     char s[ sizeof(long) + 1 ];
  512.     union
  513.     {
  514.         long longval;
  515.         char charval[ sizeof(long) ];
  516.     } probe;
  517.     probe.longval = 0x41424344L;  /* ABCD in ASCII */
  518.     strncpy( s, probe.charval, sizeof(long) );
  519.     s[ sizeof(long) ] = '';
  520.     /* fprintf( stderr, "byte order is %sn", s ); */
  521.     if ( strcmp(s, "ABCD") == 0 )
  522.         return order_bigEndian;
  523.     else
  524.         if ( strcmp(s, "DCBA") == 0 )
  525.             return order_littleEndian;
  526.         else
  527.             return order_unknown;
  528. }
  529. void SwapBytesInWords( short *loc, int words )
  530. {
  531.     int i;
  532.     short thisval;
  533.     char *dst, *src;
  534.     src = (char *) &thisval;
  535.     for ( i = 0; i < words; i++ )
  536.     {
  537.         thisval = *loc;
  538.         dst = (char *) loc++;
  539.         dst[0] = src[1];
  540.         dst[1] = src[0];
  541.     }
  542. }
  543. /*****************************************************************************
  544.  *
  545.  *  Read Audio Interchange File Format (AIFF) headers.
  546.  *
  547.  *****************************************************************************/
  548. int aiff_read_headers( FILE *file_ptr, IFF_AIFF *aiff_ptr )
  549. {
  550.     int chunkSize, subSize, sound_position;
  551.     
  552.     if ( fseek(file_ptr, 0, SEEK_SET) != 0 )
  553.         return -1;
  554.     
  555.     if ( Read32BitsHighLow(file_ptr) != IFF_ID_FORM )
  556.         return -1;
  557.     
  558.     chunkSize = Read32BitsHighLow( file_ptr );
  559.     
  560.     if ( Read32BitsHighLow(file_ptr) != IFF_ID_AIFF )
  561.         return -1;
  562.     
  563.     sound_position = 0;
  564.     while ( chunkSize > 0 )
  565.     {
  566.         chunkSize -= 4;
  567.         switch ( Read32BitsHighLow(file_ptr) )
  568. {
  569.             
  570.           case IFF_ID_COMM:
  571.             chunkSize -= subSize = Read32BitsHighLow( file_ptr );
  572.             aiff_ptr->numChannels = Read16BitsHighLow( file_ptr );
  573.             subSize -= 2;
  574.             aiff_ptr->numSampleFrames = Read32BitsHighLow( file_ptr );
  575.             subSize -= 4;
  576.             aiff_ptr->sampleSize = Read16BitsHighLow( file_ptr );
  577.             subSize -= 2;
  578.             aiff_ptr->sampleRate  = ReadIeeeExtendedHighLow( file_ptr );
  579.             subSize -= 10;
  580.             while ( subSize > 0 )
  581.     {
  582.                 getc( file_ptr );
  583.                 subSize -= 1;
  584.     }
  585.             break;
  586.             
  587.           case IFF_ID_SSND:
  588.             chunkSize -= subSize = Read32BitsHighLow( file_ptr );
  589.             aiff_ptr->blkAlgn.offset = Read32BitsHighLow( file_ptr );
  590.             subSize -= 4;
  591.             aiff_ptr->blkAlgn.blockSize = Read32BitsHighLow( file_ptr );
  592.             subSize -= 4;
  593.             sound_position = ftell( file_ptr ) + aiff_ptr->blkAlgn.offset;
  594.             if ( fseek(file_ptr, (long) subSize, SEEK_CUR) != 0 )
  595.                 return -1;
  596.             aiff_ptr->sampleType = IFF_ID_SSND;
  597.             break;
  598.             
  599.           default:
  600.             chunkSize -= subSize = Read32BitsHighLow( file_ptr );
  601.             while ( subSize > 0 )
  602.     {
  603.                 getc( file_ptr );
  604.                 subSize -= 1;
  605.     }
  606.             break;
  607. }
  608.     }
  609.     return sound_position;
  610. }
  611. /*****************************************************************************
  612.  *
  613.  *  Seek past some Audio Interchange File Format (AIFF) headers to sound data.
  614.  *
  615.  *****************************************************************************/
  616. int aiff_seek_to_sound_data( FILE *file_ptr )
  617. {
  618. if ( fseek(file_ptr, AIFF_FORM_HEADER_SIZE + AIFF_SSND_HEADER_SIZE, SEEK_SET) != 0 )
  619.         return(-1);
  620.     return(0);
  621. }
  622. /*******************************************************************************
  623.  *
  624.  *  Write Audio Interchange File Format (AIFF) headers.
  625.  *
  626.  *******************************************************************************/
  627. int aiff_write_headers( FILE *file_ptr, IFF_AIFF *aiff_ptr )
  628. {
  629.     int chunkSize;
  630.     int sampleBytes = (aiff_ptr->sampleSize / 8) + (aiff_ptr->sampleSize % 8 ? 1 : 0);
  631.     
  632.     if ( fseek(file_ptr, 0L, SEEK_SET) != 0 )
  633.         return -1;
  634.     
  635.     /* write FORM chunk */
  636.     chunkSize = 8 + 18 + 8 + aiff_ptr->numChannels * aiff_ptr->numSampleFrames * sampleBytes;
  637.     Write32BitsHighLow( file_ptr, IFF_ID_FORM );
  638.     Write32BitsHighLow( file_ptr, chunkSize );
  639.     Write32BitsHighLow( file_ptr, IFF_ID_AIFF );
  640.     /* write COMM chunk */
  641.     Write32BitsHighLow( file_ptr, IFF_ID_COMM );
  642.     Write32BitsHighLow( file_ptr, 18 ); /* chunk size */
  643.     Write16BitsHighLow( file_ptr, aiff_ptr->numChannels );
  644.     Write32BitsHighLow( file_ptr, aiff_ptr->numSampleFrames );
  645.     Write16BitsHighLow( file_ptr, aiff_ptr->sampleSize );
  646.     WriteIeeeExtendedHighLow( file_ptr, aiff_ptr->sampleRate );
  647.     /* write SSND chunk header */
  648.     chunkSize = 8 + aiff_ptr->numChannels * aiff_ptr->numSampleFrames * sampleBytes;
  649.     Write32BitsHighLow( file_ptr, IFF_ID_SSND );
  650.     Write32BitsHighLow( file_ptr, chunkSize );
  651.     Write32BitsHighLow( file_ptr, 0 ); /* offset */
  652.     Write32BitsHighLow( file_ptr, 0 ); /* block size */
  653.     return 0;
  654. }
  655. /*****************************************************************************
  656. *
  657. *  bit_stream.c package
  658. *  Author:  Jean-Georges Fritsch, C-Cube Microsystems
  659. *
  660. *****************************************************************************/
  661. /********************************************************************
  662.   This package provides functions to write (exclusive or read)
  663.   information from (exclusive or to) the bit stream.
  664.   If the bit stream is opened in read mode only the get functions are
  665.   available. If the bit stream is opened in write mode only the put
  666.   functions are available.
  667. ********************************************************************/
  668. /*open_bit_stream_w(); open the device to write the bit stream into it    */
  669. /*open_bit_stream_r(); open the device to read the bit stream from it     */
  670. /*close_bit_stream();  close the device containing the bit stream         */
  671. /*alloc_buffer();      open and initialize the buffer;                    */
  672. /*desalloc_buffer();   empty and close the buffer                         */
  673. /*back_track_buffer();     goes back N bits in the buffer                 */
  674. /*unsigned int get1bit();  read 1 bit from the bit stream                 */
  675. /*unsigned long getbits(); read N bits from the bit stream                */
  676. /*unsigned long byte_ali_getbits();   read the next byte aligned N bits from*/
  677. /*                                    the bit stream                        */
  678. /*unsigned long look_ahead(); grep the next N bits in the bit stream without*/
  679. /*                            changing the buffer pointer                   */
  680. /*put1bit(); write 1 bit from the bit stream  */
  681. /*put1bit(); write 1 bit from the bit stream  */
  682. /*putbits(); write N bits from the bit stream */
  683. /*byte_ali_putbits(); write byte aligned the next N bits into the bit stream*/
  684. /*unsigned long sstell(); return the current bit stream length (in bits)    */
  685. /*int end_bs(); return 1 if the end of bit stream reached otherwise 0       */
  686. /*int seek_sync(); return 1 if a sync word was found in the bit stream      */
  687. /*                 otherwise returns 0                                      */
  688. /* refill the buffer from the input device when the buffer becomes empty    */
  689. int refill_buffer(bs)
  690. Bit_stream_struc *bs;   /* bit stream structure */
  691. {
  692.    register int i=bs->buf_size-2-bs->buf_byte_idx;
  693.    register unsigned long n=1;
  694.    register int index=0;
  695.    char val[2];
  696.    while ((i>=0) && (!bs->eob)) {
  697.       if (bs->format == BINARY)
  698.          n = fread(&bs->buf[i--], sizeof(unsigned char), 1, bs->pt);
  699.       else {
  700.          while((index < 2) && n) {
  701.             n = fread(&val[index], sizeof(char), 1, bs->pt);
  702.             switch (val[index]) {
  703.                   case 0x30:
  704.                   case 0x31:
  705.                   case 0x32:
  706.                   case 0x33:
  707.                   case 0x34:
  708.                   case 0x35:
  709.                   case 0x36:
  710.                   case 0x37:
  711.                   case 0x38:
  712.                   case 0x39:
  713.                   case 0x41:
  714.                   case 0x42:
  715.                   case 0x43:
  716.                   case 0x44:
  717.                   case 0x45:
  718.                   case 0x46:
  719.                   index++;
  720.                   break;
  721.                   default: break;
  722.             }
  723.          }
  724.          if (val[0] <= 0x39)   bs->buf[i] = (val[0] - 0x30) << 4;
  725.                  else  bs->buf[i] = (val[0] - 0x37) << 4;
  726.          if (val[1] <= 0x39)   bs->buf[i--] |= (val[1] - 0x30);
  727.                  else  bs->buf[i--] |= (val[1] - 0x37);
  728.          index = 0;
  729.       }
  730.       if (!n) {
  731.          bs->eob= i+1;
  732.       }
  733.     }
  734.    return 0;
  735. }
  736. static char *he = "0123456789ABCDEF";
  737. /* empty the buffer to the output device when the buffer becomes full */
  738. void empty_buffer(bs, minimum)
  739. Bit_stream_struc *bs;   /* bit stream structure */
  740. int minimum;            /* end of the buffer to empty */
  741. {
  742.    register int i;
  743. #if BS_FORMAT == BINARY
  744.    for (i=bs->buf_size-1;i>=minimum;i--)
  745.       fwrite(&bs->buf[i], sizeof(unsigned char), 1, bs->pt);
  746. #else
  747.    for (i=bs->buf_size-1;i>=minimum;i--) {
  748.        char val[2];
  749.        val[0] = he[((bs->buf[i] >> 4) & 0x0F)];
  750.        val[1] = he[(bs->buf[i] & 0x0F)];
  751.        fwrite(val, sizeof(char), 2, bs->pt);
  752.    }
  753. #endif
  754. fflush(bs->pt); /* NEW SS to assist in debugging*/
  755.    for (i=minimum-1; i>=0; i--)
  756.        bs->buf[bs->buf_size - minimum + i] = bs->buf[i];
  757.    bs->buf_byte_idx = bs->buf_size -1 - minimum;
  758.    bs->buf_bit_idx = 8;
  759. }
  760. /* open the device to write the bit stream into it */
  761. void open_bit_stream_w(bs, bs_filenam, size)
  762. Bit_stream_struc *bs;   /* bit stream structure */
  763. char *bs_filenam;       /* name of the bit stream file */
  764. int size;               /* size of the buffer */
  765. {
  766.    if ((bs->pt = fopen(bs_filenam, "wb")) == NULL) {
  767.       printf("Could not create "%s".n", bs_filenam);
  768.       exit(1);
  769.    }
  770.    alloc_buffer(bs, size);
  771.    bs->buf_byte_idx = size-1;
  772.    bs->buf_bit_idx=8;
  773.    bs->totbit=0;
  774.    bs->mode = WRITE_MODE;
  775.    bs->eob = FALSE;
  776.    bs->eobs = FALSE;
  777. }
  778. /* open the device to read the bit stream from it */
  779. void open_bit_stream_r(bs, bs_filenam, size)
  780. Bit_stream_struc *bs;   /* bit stream structure */
  781. char *bs_filenam;       /* name of the bit stream file */
  782. int size;               /* size of the buffer */
  783. {
  784.    register unsigned long n;
  785.    register unsigned char flag = 1;
  786.    unsigned char val;
  787.    if ((bs->pt = fopen(bs_filenam, "rb")) == NULL) {
  788.       printf("Could not find "%s".n", bs_filenam);
  789.       exit(1);
  790.    }
  791.    do {
  792.      n = fread(&val, sizeof(unsigned char), 1, bs->pt);
  793.      switch (val) {
  794.       case 0x30:
  795.       case 0x31:
  796.       case 0x32:
  797.       case 0x33:
  798.       case 0x34:
  799.       case 0x35:
  800.       case 0x36:
  801.       case 0x37:
  802.       case 0x38:
  803.       case 0x39:
  804.       case 0x41:
  805.       case 0x42:
  806.       case 0x43:
  807.       case 0x44:
  808.       case 0x45:
  809.       case 0x46:
  810.       case 0xa:  /* n */
  811.       case 0xd:  /* cr */
  812.       case 0x1a:  /* sub */
  813.           break;
  814.       default: /* detection of an binary character */
  815.           flag--;
  816.           break;
  817.      }
  818.    } while (flag & n);
  819.    if (flag) {
  820.       printf ("the bit stream file %s is an ASCII filen", bs_filenam);
  821.       bs->format = ASCII;
  822.    }
  823.    else {
  824.       bs->format = BINARY;
  825.       printf ("the bit stream file %s is a BINARY filen", bs_filenam);
  826.    }
  827.    fclose(bs->pt);
  828.    if ((bs->pt = fopen(bs_filenam, "rb")) == NULL) {
  829.       printf("Could not find "%s".n", bs_filenam);
  830.       exit(1);
  831.    }
  832.    alloc_buffer(bs, size);
  833.    bs->buf_byte_idx=0;
  834.    bs->buf_bit_idx=0;
  835.    bs->totbit=0;
  836.    bs->mode = READ_MODE;
  837.    bs->eob = FALSE;
  838.    bs->eobs = FALSE;
  839. }
  840. /*close the device containing the bit stream after a read process*/
  841. void close_bit_stream_r(bs)
  842. Bit_stream_struc *bs;   /* bit stream structure */
  843. {
  844.    fclose(bs->pt);
  845.    desalloc_buffer(bs);
  846. }
  847. /*close the device containing the bit stream after a write process*/
  848. void close_bit_stream_w(bs)
  849. Bit_stream_struc *bs;   /* bit stream structure */
  850. {
  851.    empty_buffer(bs, bs->buf_byte_idx);
  852.    fclose(bs->pt);
  853.    desalloc_buffer(bs);
  854. }
  855. /*open and initialize the buffer; */
  856. void alloc_buffer(bs, size)
  857. Bit_stream_struc *bs;   /* bit stream structure */
  858. int size;
  859. {
  860.    bs->buf = (unsigned char FAR *) mem_alloc(size*sizeof(unsigned
  861.               char), "buffer");
  862.    bs->buf_size = size;
  863. }
  864. /*empty and close the buffer */
  865. void desalloc_buffer(bs)
  866. Bit_stream_struc *bs;   /* bit stream structure */
  867. {
  868.    free(bs->buf);
  869. }
  870. int putmask[9]={0x0, 0x1, 0x3, 0x7, 0xf, 0x1f, 0x3f, 0x7f, 0xff};
  871. int clearmask[9]={0xff, 0xfe, 0xfc, 0xf8, 0xf0, 0xe0, 0xc0, 0x80, 0x0};
  872. void back_track_buffer(bs, N) /* goes back N bits in the buffer */
  873. Bit_stream_struc *bs;   /* bit stream structure */
  874. int N;
  875. {
  876.    int tmp = N - (N/8)*8;
  877.    register int i;
  878.    bs->totbit -= N;
  879.    for (i=bs->buf_byte_idx;i< bs->buf_byte_idx+N/8-1;i++) bs->buf[i] = 0;
  880.    bs->buf_byte_idx += N/8;
  881.    if ( (tmp + bs->buf_bit_idx) <= 8) {
  882.       bs->buf_bit_idx += tmp;
  883.    }
  884.    else {
  885.       bs->buf_byte_idx ++;
  886.       bs->buf_bit_idx += (tmp - 8);
  887.    }
  888.    bs->buf[bs->buf_byte_idx] &= clearmask[bs->buf_bit_idx];
  889. }
  890. int mask[8]={0x1, 0x2, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80};
  891. /*read 1 bit from the bit stream */
  892. unsigned int get1bit(bs)
  893. Bit_stream_struc *bs;   /* bit stream structure */
  894. {
  895.    unsigned int bit;
  896.    register int i;
  897.    bs->totbit++;
  898.    if (!bs->buf_bit_idx) {
  899.         bs->buf_bit_idx = 8;
  900.         bs->buf_byte_idx--;
  901.         if ((bs->buf_byte_idx < MINIMUM) || (bs->buf_byte_idx < bs->eob)) {
  902.              if (bs->eob)
  903.                 bs->eobs = TRUE;
  904.              else {
  905.                 for (i=bs->buf_byte_idx; i>=0;i--)
  906.                   bs->buf[bs->buf_size-1-bs->buf_byte_idx+i] = bs->buf[i];
  907.                 refill_buffer(bs);
  908.                 bs->buf_byte_idx = bs->buf_size-1;
  909.              }
  910.         }
  911.    }
  912.    bit = bs->buf[bs->buf_byte_idx]&mask[bs->buf_bit_idx-1];
  913.    bit = bit >> (bs->buf_bit_idx-1);
  914.    bs->buf_bit_idx--;
  915.    return(bit);
  916. }
  917. /*write 1 bit from the bit stream */
  918. void put1bit(bs, bit)
  919. Bit_stream_struc *bs;   /* bit stream structure */
  920. int bit;                /* bit to write into the buffer */
  921. {
  922.    bs->totbit++;
  923.    bs->buf[bs->buf_byte_idx] |= (bit&0x1) << (bs->buf_bit_idx-1);
  924.    bs->buf_bit_idx--;
  925.    if (!bs->buf_bit_idx) {
  926.        bs->buf_bit_idx = 8;
  927.        bs->buf_byte_idx--;
  928.        if (bs->buf_byte_idx < 0)
  929.           empty_buffer(bs, MINIMUM);
  930.        bs->buf[bs->buf_byte_idx] = 0;
  931.    }
  932. }
  933. /*look ahead for the next N bits from the bit stream */
  934. unsigned long look_ahead(bs, N)
  935. Bit_stream_struc *bs;   /* bit stream structure */
  936. int N;                  /* number of bits to read from the bit stream */
  937. {
  938.  unsigned long val=0;
  939.  register int j = N;
  940.  register int k, tmp;
  941.  register int bit_idx = bs->buf_bit_idx;
  942.  register int byte_idx = bs->buf_byte_idx;
  943.  if (N > MAX_LENGTH)
  944.     printf("Cannot read or write more than %d bits at a time.n", MAX_LENGTH);
  945.  while (j > 0) {
  946.     if (!bit_idx) {
  947.         bit_idx = 8;
  948.         byte_idx--;
  949.     }
  950.     k = MIN (j, bit_idx);
  951.     tmp = bs->buf[byte_idx]&putmask[bit_idx];
  952.     tmp = tmp >> (bit_idx-k);
  953.     val |= tmp << (j-k);
  954.     bit_idx -= k;
  955.     j -= k;
  956.  }
  957.  return(val);
  958. }
  959. /*read N bit from the bit stream */
  960. unsigned long getbits(bs, N)
  961. Bit_stream_struc *bs;   /* bit stream structure */
  962. int N;                  /* number of bits to read from the bit stream */
  963. {
  964.  unsigned long val=0;
  965.  register int i;
  966.  register int j = N;
  967.  register int k, tmp;
  968.  if (N > MAX_LENGTH)
  969.     printf("Cannot read or write more than %d bits at a time.n", MAX_LENGTH);
  970.  bs->totbit += N;
  971.  while (j > 0) {
  972.    if (!bs->buf_bit_idx) {
  973.         bs->buf_bit_idx = 8;
  974.         bs->buf_byte_idx--;
  975.         if ((bs->buf_byte_idx < MINIMUM) || (bs->buf_byte_idx < bs->eob)) {
  976.              if (bs->eob)
  977.                 bs->eobs = TRUE;
  978.              else {
  979.                 for (i=bs->buf_byte_idx; i>=0;i--)
  980.                    bs->buf[bs->buf_size-1-bs->buf_byte_idx+i] = bs->buf[i];
  981.                 refill_buffer(bs);
  982.                 bs->buf_byte_idx = bs->buf_size-1;
  983.              }
  984.         }
  985.    }
  986.    k = MIN (j, bs->buf_bit_idx);
  987.    tmp = bs->buf[bs->buf_byte_idx]&putmask[bs->buf_bit_idx];
  988.    tmp = tmp >> (bs->buf_bit_idx-k);
  989.    val |= tmp << (j-k);
  990.    bs->buf_bit_idx -= k;
  991.    j -= k;
  992.  }
  993.  return(val);
  994. }
  995. /*write N bits into the bit stream */
  996. void putbits(bs, val, N)
  997. Bit_stream_struc *bs;   /* bit stream structure */
  998. unsigned int val;       /* val to write into the buffer */
  999. int N;                  /* number of bits of val */
  1000. {
  1001.  register int j = N;
  1002.  register int k, tmp;
  1003.  if (N > MAX_LENGTH)
  1004.     printf("Cannot read or write more than %d bits at a time.n", MAX_LENGTH);
  1005.  bs->totbit += N;
  1006.  while (j > 0) {
  1007.    k = MIN(j, bs->buf_bit_idx);
  1008.    tmp = val >> (j-k);
  1009.    bs->buf[bs->buf_byte_idx] |= (tmp&putmask[k]) << (bs->buf_bit_idx-k);
  1010.    bs->buf_bit_idx -= k;
  1011.    if (!bs->buf_bit_idx) {
  1012.        bs->buf_bit_idx = 8;
  1013.        bs->buf_byte_idx--;
  1014.        if (bs->buf_byte_idx < 0)
  1015.           empty_buffer(bs, MINIMUM);
  1016.        bs->buf[bs->buf_byte_idx] = 0;
  1017.    }
  1018.    j -= k;
  1019.  }
  1020. }
  1021. /*write N bits byte aligned into the bit stream */
  1022. void byte_ali_putbits(bs, val, N)
  1023. Bit_stream_struc *bs;   /* bit stream structure */
  1024. unsigned int val;       /* val to write into the buffer */
  1025. int N;                  /* number of bits of val */
  1026. {
  1027.  unsigned long aligning, sstell();
  1028.  if (N > MAX_LENGTH)
  1029.     printf("Cannot read or write more than %d bits at a time.n", MAX_LENGTH);
  1030.  aligning = sstell(bs)%8;
  1031.  if (aligning)
  1032.      putbits(bs, (unsigned int)0, (int)(8-aligning)); 
  1033.  putbits(bs, val, N);
  1034. }
  1035. /*read the next bute aligned N bits from the bit stream */
  1036. unsigned long byte_ali_getbits(bs, N)
  1037. Bit_stream_struc *bs;   /* bit stream structure */
  1038. int N;                  /* number of bits of val */
  1039. {
  1040.  unsigned long aligning, sstell();
  1041.  if (N > MAX_LENGTH)
  1042.     printf("Cannot read or write more than %d bits at a time.n", MAX_LENGTH);
  1043.  aligning = sstell(bs)%8;
  1044.  if (aligning)
  1045.     getbits(bs, (int)(8-aligning));
  1046.  return(getbits(bs, N));
  1047. }
  1048. /*return the current bit stream length (in bits)*/
  1049. unsigned long sstell(bs)
  1050. Bit_stream_struc *bs;   /* bit stream structure */
  1051. {
  1052.   return(bs->totbit);
  1053. }
  1054. /*return the status of the bit stream*/
  1055. /* returns 1 if end of bit stream was reached */
  1056. /* returns 0 if end of bit stream was not reached */
  1057. int end_bs(bs)
  1058. Bit_stream_struc *bs;   /* bit stream structure */
  1059. {
  1060.   return(bs->eobs);
  1061. }
  1062. /*this function seeks for a byte aligned sync word in the bit stream and
  1063.   places the bit stream pointer right after the sync.
  1064.   This function returns 1 if the sync was found otherwise it returns 0  */
  1065. int seek_sync(bs, sync, N)
  1066. Bit_stream_struc *bs;   /* bit stream structure */
  1067. long sync;      /* sync word maximum 32 bits */
  1068. int N;          /* sync word length */
  1069. {
  1070. #if defined(MACINTOSH) && !defined(__powerc)
  1071.  double pow();
  1072. #endif
  1073.  unsigned long aligning, stell();
  1074.  unsigned long val;
  1075.  long maxi = (int)pow(2.0, (FLOAT)N) - 1;
  1076.  aligning = sstell(bs)%ALIGNING;
  1077.  if (aligning)
  1078.     getbits(bs, (int)(ALIGNING-aligning));
  1079.   val = getbits(bs, N);
  1080.   while (((val&maxi) != sync) && (!end_bs(bs))) {
  1081.         val <<= ALIGNING;
  1082.         val |= getbits(bs, ALIGNING);
  1083.   }
  1084.  if (end_bs(bs)) return(0);
  1085.  else return(1);
  1086. }
  1087. /*****************************************************************************
  1088. *
  1089. *  End of bit_stream.c package
  1090. *
  1091. *****************************************************************************/
  1092. /*****************************************************************************
  1093. *
  1094. *  CRC error protection package
  1095. *
  1096. *****************************************************************************/
  1097. void I_CRC_calc(fr_ps, bit_alloc, crc)
  1098. frame_params *fr_ps;
  1099. unsigned int bit_alloc[2][SBLIMIT];
  1100. unsigned int *crc;
  1101. {
  1102.         int i, k;
  1103.         layer *info = fr_ps->header;
  1104.         int stereo  = fr_ps->stereo;
  1105.         int jsbound = fr_ps->jsbound;
  1106.         *crc = 0xffff; /* changed from '0' 92-08-11 shn */
  1107.         update_CRC(info->bitrate_index, 4, crc);
  1108.         update_CRC(info->sampling_frequency, 2, crc);
  1109.         update_CRC(info->padding, 1, crc);
  1110.         update_CRC(info->extension, 1, crc);
  1111.         update_CRC(info->mode, 2, crc);
  1112.         update_CRC(info->mode_ext, 2, crc);
  1113.         update_CRC(info->copyright, 1, crc);
  1114.         update_CRC(info->original, 1, crc);
  1115.         update_CRC(info->emphasis, 2, crc);
  1116.         for (i=0;i<SBLIMIT;i++)
  1117.                 for (k=0;k<((i<jsbound)?stereo:1);k++)
  1118.                         update_CRC(bit_alloc[k][i], 4, crc);
  1119. }
  1120. void II_CRC_calc(fr_ps, bit_alloc, scfsi, crc)
  1121. frame_params *fr_ps;
  1122. unsigned int bit_alloc[2][SBLIMIT], scfsi[2][SBLIMIT];
  1123. unsigned int *crc;
  1124. {
  1125.         int i, k;
  1126.         layer *info = fr_ps->header;
  1127.         int stereo  = fr_ps->stereo;
  1128.         int sblimit = fr_ps->sblimit;
  1129.         int jsbound = fr_ps->jsbound;
  1130.         al_table *alloc = fr_ps->alloc;
  1131.         *crc = 0xffff; /* changed from '0' 92-08-11 shn */
  1132.         update_CRC(info->bitrate_index, 4, crc);
  1133.         update_CRC(info->sampling_frequency, 2, crc);
  1134.         update_CRC(info->padding, 1, crc);
  1135.         update_CRC(info->extension, 1, crc);
  1136.         update_CRC(info->mode, 2, crc);
  1137.         update_CRC(info->mode_ext, 2, crc);
  1138.         update_CRC(info->copyright, 1, crc);
  1139.         update_CRC(info->original, 1, crc);
  1140.         update_CRC(info->emphasis, 2, crc);
  1141.         for (i=0;i<sblimit;i++)
  1142.                 for (k=0;k<((i<jsbound)?stereo:1);k++)
  1143.                         update_CRC(bit_alloc[k][i], (*alloc)[i][0].bits, crc);
  1144.         for (i=0;i<sblimit;i++)
  1145.                 for (k=0;k<stereo;k++)
  1146.                         if (bit_alloc[k][i])
  1147.                                 update_CRC(scfsi[k][i], 2, crc);
  1148. }
  1149. void update_CRC(data, length, crc)
  1150. unsigned int data, length, *crc;
  1151. {
  1152.         unsigned int  masking, carry;
  1153.         masking = 1 << length;
  1154.         while((masking >>= 1)){
  1155.                 carry = *crc & 0x8000;
  1156.                 *crc <<= 1;
  1157.                 if (!carry ^ !(data & masking))
  1158.                         *crc ^= CRC16_POLYNOMIAL;
  1159.         }
  1160.         *crc &= 0xffff;
  1161. }
  1162. /*****************************************************************************
  1163. *
  1164. *  End of CRC error protection package
  1165. *
  1166. *****************************************************************************/
  1167. #ifdef  MACINTOSH
  1168. /*****************************************************************************
  1169. *
  1170. *  Set Macintosh file attributes.
  1171. *
  1172. *****************************************************************************/
  1173. void set_mac_file_attr( char fileName[MAX_NAME_SIZE], short vRefNum, OSType creator, OSType fileType)
  1174. {
  1175.     char pascal_fileName[MAX_NAME_SIZE];
  1176.     FInfo fndrInfo;
  1177.     OSErr anErr;
  1178.     long dirID = 0L;
  1179.     
  1180.     CtoPstr(strcpy(pascal_fileName, fileName));
  1181.     anErr = HGetFInfo(vRefNum, dirID, (ConstStr255Param) pascal_fileName, &fndrInfo);
  1182.     if ( anErr != noErr )
  1183.         return;
  1184.     fndrInfo.fdCreator = creator;
  1185.     fndrInfo.fdType = fileType;
  1186.     anErr = HSetFInfo(vRefNum, dirID, (ConstStr255Param) pascal_fileName, &fndrInfo);
  1187. }
  1188. #endif
  1189. #ifdef  MS_DOS
  1190. /* ------------------------------------------------------------------------
  1191. new_ext()
  1192. Puts a new extension name on a file name <filename>.
  1193. Removes the last extension name, if any.
  1194. 1992-08-19, 1995-06-12 shn
  1195. ------------------------------------------------------------------------ */
  1196. void
  1197. new_ext(char *filename, char *extname, char *newname)
  1198. {
  1199.   int found, dotpos;
  1200.   /* First, strip the extension */
  1201.   dotpos=strlen(filename); found=0;
  1202.   do
  1203.   {
  1204.     switch (filename[dotpos])
  1205.     {
  1206.       case '.' : found=1; break;
  1207.       case '\':
  1208.       case '/' :
  1209.       case ':' : found=-1; break;
  1210.       default  : dotpos--; if (dotpos<0) found=-1; break;
  1211.     }
  1212.   } while (found==0);
  1213.   if (found==-1) strcpy(newname,filename);
  1214.   if (found== 1) { strncpy(newname,filename,dotpos); newname[dotpos]=''; }
  1215.   strcat(newname,extname);
  1216. }
  1217. #endif
  1218. #define BUFSIZE 4096
  1219. static unsigned long offset,totbit=0, buf_byte_idx=0;
  1220. static unsigned int buf[BUFSIZE];
  1221. static unsigned int buf_bit_idx=8;
  1222. /*return the current bit stream length (in bits)*/
  1223. unsigned long hsstell()
  1224. {
  1225.   return(totbit);
  1226. }
  1227. /* int putmask[9]={0x0, 0x1, 0x3, 0x7, 0xf, 0x1f, 0x3f, 0x7f, 0xff}; */
  1228. extern int putmask[9];
  1229. /*read N bit from the bit stream */
  1230. unsigned long hgetbits(N)
  1231. int N;                  /* number of bits to read from the bit stream */
  1232. {
  1233.  unsigned long val=0;
  1234.  register int j = N;
  1235.  register int k, tmp;
  1236. /*
  1237.  if (N > MAX_LENGTH)
  1238.      printf("Cannot read or write more than %d bits at a time.n", MAX_LENGTH);
  1239. */
  1240.  totbit += N;
  1241.  while (j > 0) {
  1242.    if (!buf_bit_idx) {
  1243.         buf_bit_idx = 8;
  1244.         buf_byte_idx++;
  1245. if (buf_byte_idx > offset)
  1246.   { printf("Buffer overflow !!n");exit(3); }
  1247.    }
  1248.    k = MIN (j, buf_bit_idx);
  1249.    tmp = buf[buf_byte_idx%BUFSIZE]&putmask[buf_bit_idx];
  1250.    tmp = tmp >> (buf_bit_idx-k);
  1251.    val |= tmp << (j-k);
  1252.    buf_bit_idx -= k;
  1253.    j -= k;
  1254.  }
  1255.  return(val);
  1256. }
  1257. unsigned int hget1bit()
  1258. {
  1259. return(hgetbits(1));
  1260. }
  1261. /*write N bits into the bit stream */
  1262. void hputbuf(val, N)
  1263. unsigned int val;       /* val to write into the buffer */
  1264. int N;                  /* number of bits of val */
  1265. {
  1266.   if (N != 8) { printf("Not Supported yet!!n"); exit(-3); }
  1267.   buf[offset % BUFSIZE] = val;
  1268.   offset++;
  1269. }
  1270. void rewindNbits( N )
  1271. int N;
  1272. {
  1273.    totbit -= N;
  1274.    buf_bit_idx += N;
  1275.    while( buf_bit_idx >= 8 )
  1276.    {  buf_bit_idx -= 8;
  1277.       buf_byte_idx--;
  1278.    }
  1279. }
  1280. void rewindNbytes( N )
  1281. int N;
  1282. {
  1283.    totbit -= N*8;
  1284.    buf_byte_idx -= N;
  1285. }