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