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

mpeg/mp3

开发平台:

C/C++

  1. /**********************************************************************
  2.  * ISO MPEG Audio Subgroup Software Simulation Group (1996)
  3.  * ISO 13818-3 MPEG-2 Audio Multichannel Encoder
  4.  *
  5.  * $Id: common.c 1.8 1996/02/12 07:13:35 rowlands Exp $
  6.  *
  7.  * $Log: common.c $
  8.  * Revision 1.8  1996/02/12 07:13:35  rowlands
  9.  * Release following Munich meeting
  10.  *
  11.  * Revision 1.5.2.1  1995/11/06  04:19:12  rowlands
  12.  * Received from Uwe Felderhoff (IRT)
  13.  *
  14.  * Revision 1.6.1  1995/08/14  07:49:33  tenkate
  15.  * ML-LSF added Warner ten Kate 7/8/95 (Philips)
  16.  * allocation table alloc_4 read to allocml
  17.  *
  18.  * Revision 1.6  1995/07/31  07:44:27  tenkate
  19.  * void hdr_to_frps updated for phantom coding, 25/07/95 WtK
  20.  *
  21.  * Revision 1.3.2.1  1995/06/16  03:46:42  rowlands
  22.  * Input from Susanne Ritscher (IRT)
  23.  *
  24.  * Revision 1.3.3.1  1995/06/16  08:25:11  rowlands
  25.  * Input from Sang Wook Kim (Samsung AIT)
  26.  *
  27.  **********************************************************************/
  28. /**********************************************************************
  29.  *   date   programmers         comment                               *
  30.  * 2/25/91  Doulas Wong,        start of version 1.0 records          *
  31.  *          Davis Pan                                                 *
  32.  * 5/10/91  W. Joseph Carter    Created this file for all common      *
  33.  *                              functions and global variables.       *
  34.  *                              Ported to Macintosh and Unix.         *
  35.  *                              Added Jean-Georges Fritsch's          *
  36.  *                              "bitstream.c" package.                *
  37.  *                              Added routines to handle AIFF PCM     *
  38.  *                              sound files.                          *
  39.  *                              Added "mem_alloc()" and "mem_free()"  *
  40.  *                              routines for memory allocation        *
  41.  *                              portability.                          *
  42.  *                              Added routines to convert between     *
  43.  *                              Apple SANE extended floating point    *
  44.  *                              format and IEEE double precision      *
  45.  *                              floating point format.  For AIFF.     *
  46.  * 02jul91 dpwe (Aware Inc)     Moved allocation table input here;    *
  47.  *                              Tables read from subdir TABLES_PATH.  *
  48.  *                              Added some debug printout fns (Write*)*
  49.  * 7/10/91 Earle Jennings       replacement of the one float by FLOAT *
  50.  *                              port to MsDos from MacIntosh version  *
  51.  * 8/ 5/91 Jean-Georges Fritsch fixed bug in open_bit_stream_r()      *
  52.  *10/ 1/91 S.I. Sudharsanan,    Ported to IBM AIX platform.           *
  53.  *         Don H. Lee,                                                *
  54.  *         Peter W. Farrett                                           *
  55.  *10/3/91  Don H. Lee           implemented CRC-16 error protection   *
  56.  *                              newly introduced functions are        *
  57.  *                              I_CRC_calc, II_CRC_calc and           *
  58.  *                              update_CRC. Additions and revisions   *
  59.  *                              are marked with dhl for clarity       *
  60.  *10/18/91 Jean-Georges Fritsch fixed bug in update_CRC(),            *
  61.  *                              II_CRC_calc() and I_CRC_calc()        *
  62.  * 2/11/92  W. Joseph Carter    Ported new code to Macintosh.  Most   *
  63.  *                              important fixes involved changing     *
  64.  *                              16-bit ints to long or unsigned in    *
  65.  *                              bit alloc routines for quant of 65535 *
  66.  *                              and passing proper function args.     *
  67.  *                              Removed "Other Joint Stereo" option   *
  68.  *                              and made bitrate be total channel     *
  69.  *                              bitrate, irrespective of the mode.    *
  70.  *                              Fixed many small bugs & reorganized.  *
  71.  *3/20/92 Jean-Georges Fritsch  fixed bug in start-of-frame search    *
  72.  *  8jul92 Susanne Ritscher     MS-DOS, MSC 6.0 port fixes.           *
  73.  * 19aug92 Soren H. Nielsen     Fixed bug in I_CRC_calc and in        *
  74.  *                              II_CRC_calc. Added function: new_ext  *
  75.  *          for better MS-DOS compatability       *
  76.  *26nov92 Susanne Ritscher    AIFF for MS-DOS        *
  77.  **********************************************************************
  78.  *                                                                    *
  79.  *                                                                    *
  80.  *  MPEG/audio Phase 2 coding/decoding multichannel                   *
  81.  *                                                                    *
  82.  *  7/27/93        Susanne Ritscher,  IRT Munich                      *
  83.  *                                                                    *
  84.  *  8/27/93        Susanne Ritscher, IRT Munich                       *
  85.  *                 Channel-Switching is working                       *
  86.  *  9/1/93         Susanne Ritscher,  IRT Munich                      *
  87.  *                 all channels normalized                            *
  88.  *  9/20/93        channel-switching is only performed at a           *
  89.  *                 certain limit of TC_ALLOC dB, which is included    *
  90.  *                 in encoder.h                                       *
  91.  *                                                                    *
  92.  *  Version 1.0                                                       *
  93.  *                                                                    *
  94.  *  07/12/94       Susanne Ritscher,  IRT Munich                      *
  95.  *                                                                    *
  96.  *  Version 1.1                                                       *
  97.  *                                                                    *
  98.  *  02/23/95    Susanne Ritscher,  IRT Munich                      *
  99.  *                 corrected some bugs                                *
  100.  *                 extension bitstream is working                     *
  101.  *                                                                    *
  102.  *  Version 2.0                                                       *
  103.  *                                                                    *
  104.  *  01/28/97       Frans de Bont, Philips Sound & Vision, Eindhoven   *
  105.  *     - dynamic crosstalk working for all configurations*
  106.  *     - prediction working for all configurations       *
  107.  *     - extension bitstream fixed       *
  108.  *     - fully compliant to DIS 13818-3.2                *
  109.  *                                                                    *       *     
  110.  **********************************************************************/
  111. /***********************************************************************
  112.  *                                                                    *
  113.  *  06/06/95    Sang Wook Kim,  Samsung AIT                        *
  114.  *                 corrected some bugs                                *
  115.  *                                                                    *
  116.  **********************************************************************/
  117. /***********************************************************************
  118. *
  119. *  Global Include Files
  120. *
  121. ***********************************************************************/
  122. #include        "common.h"
  123. /*
  124. #undef PrintCRCDebug
  125. #undef PrintBitDebug
  126. */
  127. #ifdef  MACINTOSH
  128. #include        <SANE.h>
  129. #include        <pascal.h>
  130. #endif
  131. #include <ctype.h>
  132. /***********************************************************************
  133. *
  134. *  Global Variable Definitions
  135. *
  136. ***********************************************************************/
  137. char *mode_names[4] = { "stereo", "j-stereo", "dual-ch", "single-ch" };
  138. char *layer_names[3] = { "I", "II", "III" };
  139. double  s_freq[4] = {44.1, 48, 32, 0};
  140. int   bitrate[3][16] = {
  141.  {0,32,64,96,128,160,192,224,256,288,320,352,384,416,448,0},
  142.  {0,32,48,56,64,80,96,112,128,160,192,224,256,320,384,0},
  143.  {0,32,40,48,56,64,80,96,112,128,160,192,224,256,320,0}
  144.         };
  145. double /*far*/ multiple[64] = {
  146. 2.00000000000000, 1.58740105196820, 1.25992104989487,
  147. 1.00000000000000, 0.79370052598410, 0.62996052494744, 0.50000000000000,
  148. 0.39685026299205, 0.31498026247372, 0.25000000000000, 0.19842513149602,
  149. 0.15749013123686, 0.12500000000000, 0.09921256574801, 0.07874506561843,
  150. 0.06250000000000, 0.04960628287401, 0.03937253280921, 0.03125000000000,
  151. 0.02480314143700, 0.01968626640461, 0.01562500000000, 0.01240157071850,
  152. 0.00984313320230, 0.00781250000000, 0.00620078535925, 0.00492156660115,
  153. 0.00390625000000, 0.00310039267963, 0.00246078330058, 0.00195312500000,
  154. 0.00155019633981, 0.00123039165029, 0.00097656250000, 0.00077509816991,
  155. 0.00061519582514, 0.00048828125000, 0.00038754908495, 0.00030759791257,
  156. 0.00024414062500, 0.00019377454248, 0.00015379895629, 0.00012207031250,
  157. 0.00009688727124, 0.00007689947814, 0.00006103515625, 0.00004844363562,
  158. 0.00003844973907, 0.00003051757813, 0.00002422181781, 0.00001922486954,
  159. 0.00001525878906, 0.00001211090890, 0.00000961243477, 0.00000762939453,
  160. 0.00000605545445, 0.00000480621738, 0.00000381469727, 0.00000302772723,
  161. 0.00000240310869, 0.00000190734863, 0.00000151386361, 0.00000120155435,
  162. 1E-20
  163. };
  164. int sbgrp[32] = { 0,  1,  2,  3,  4,  5,  6,  7,  8,  8,  9,  9, 10, 10, 10, 10,
  165.  11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11};
  166. int sb_groups[12] = { 0, 1, 2, 3, 4, 5, 6, 7, 9, 11, 15, 26 /*31*/};
  167. int transmission_channel7[8][2] = { /* for 5/2 config */
  168. {10, 11}, 
  169. { 7, 11}, 
  170. {10,  8}, 
  171. { 7,  8}, 
  172. {10,  9}, 
  173. { 7,  9}, 
  174. { 9, 11}, 
  175. { 9,  8}, 
  176. };    
  177. int transmission_channel5[8][5] = { /* for 3/2 config */
  178.                    {0, 1, 2, 3, 4}, 
  179.    {0, 1, 5, 3, 4}, 
  180.    {0, 1, 6, 3, 4}, 
  181.    {0, 1, 2, 5, 4}, 
  182.    {0, 1, 2, 3, 6}, 
  183.    {0, 1, 2, 5, 6}, 
  184.    {0, 1, 6, 5, 4}, 
  185.    {0, 1, 5, 3, 6}, 
  186.    };
  187. int transmission_channel4a[6][4] = { /* for 3/1 config */
  188.                    {0, 1, 2, 3}, 
  189.    {0, 1, 5, 3}, 
  190.    {0, 1, 6, 3}, 
  191.    {0, 1, 2, 5}, 
  192.    {0, 1, 2, 6}, 
  193.    {0, 1, 5, 6}, 
  194.    };
  195. int transmission_channel4b[4][4] = { /* for 2/2 config */
  196.                    {0, 1, 2, 3}, 
  197.    {0, 1, 5, 3}, 
  198.    {0, 1, 2, 6}, 
  199.    {0, 1, 5, 6}, 
  200.    };
  201. int transmission_channel3[3][5] = { /* for 3/0 (+ 2/0) and 2/1 config's */
  202.                    {0, 1, 2, 3, 4}, 
  203.    {0, 1, 5, 3, 4}, 
  204.    {0, 1, 6, 3, 4}, 
  205.    };
  206. int no_channel[8][2] = {
  207. {5, 6}, 
  208. {2, 6}, 
  209. {5, 2}, 
  210. {3, 6}, 
  211. {5, 4}, 
  212. {3, 4}, 
  213. {3, 2}, 
  214. {2, 4}, 
  215. };    
  216. int n_pred_coef[16]; 
  217. int n_pred_coef4[16]  = { 6, 4, 4, 4, 2, 2, 2, 0, 2, 2, 2, 0, 0, 0, 0, 0 }; 
  218. int n_pred_coef3[16] = { 4, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; 
  219. int n_pred_coef1[16] = { 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; 
  220. int dyn_bbal5[19][12] = { /* for 5/2 config */
  221.     {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, 
  222.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  223.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  224.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  225.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  226.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  227.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  228.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  229.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  230.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  231.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  232.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  233.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  234.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  235.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  236.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  237.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  238.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  239.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  240.     };
  241. int dyn_bbal4[15][12] = { /* for 3/2 config */
  242.     {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, 
  243.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  244.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  245.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  246.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  247.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  248.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  249.     {12, 12, 12, 12, 12, 12, 12, 12, 24, 21, 36, 87},     
  250.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  251.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  252.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  253.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  254.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  255.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  256.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  257.     };
  258. int dyn_bbal4PhC[15][12] = { /* for 3/2 config in case of Phantom center coding */
  259.     {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, 
  260.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  261.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  262.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 0, 0},     
  263.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  264.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 12, 29},         
  265.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 12, 29},         
  266.     {12, 12, 12, 12, 12, 12, 12, 12, 24, 21, 24, 58},     
  267.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  268.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  269.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  270.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  271.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  272.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 12, 29},         
  273.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  274.     };
  275. int dyn_bbal3[5][12] = { /* for 3/1 and 2/2 config */
  276.     {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, 
  277.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  278.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  279.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 24, 58},         
  280.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  281.     };
  282. int dyn_bbal3PhC[5][12] = { /* for 3/1 config in case of Phantom center coding */
  283.     {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, 
  284.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  285.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 0, 0},     
  286.     {8, 8, 8, 8, 8, 8, 8, 8, 16, 14, 12, 29},         
  287.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  288.     };
  289. int dyn_bbal1[2][12] = { /* for 3/0 (+2/0) and 2/1 config */
  290.     {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, 
  291.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 12, 29},     
  292.     };
  293. int dyn_bbal1PhC[2][12] = { /* for 3/0 (+2/0) config in case of Phantom center coding */
  294.     {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, 
  295.     {4, 4, 4, 4, 4, 4, 4, 4, 8, 7, 0, 0},     
  296.     };
  297. int dyn_ch5[19][2] = { /* for 5/2 config */
  298.     {1, 1}, 
  299.     {1, 0}, 
  300.     {1, 0}, 
  301.     {1, 0}, 
  302.     {1, 0}, 
  303.     {0, 1}, 
  304.     {0, 0}, 
  305.     {0, 0}, 
  306.     {0, 0}, 
  307.     {0, 0}, 
  308.     {0, 1}, 
  309.     {0, 0}, 
  310.     {0, 0}, 
  311.     {0, 0}, 
  312.     {0, 1}, 
  313.     {0, 0}, 
  314.     {0, 0}, 
  315.     {0, 0}, 
  316.     {0, 0}, 
  317.    };    
  318.  
  319. int dyn_ch4[15][3] = { /* for 3/2 config */
  320.     {1, 1, 1}, 
  321.     {1, 1, 0}, 
  322.     {1, 0, 1}, 
  323.     {0, 1, 1}, 
  324.     {1, 0, 0}, 
  325.     {0, 1, 0}, 
  326.     {0, 0, 1}, 
  327.     {0, 0, 0}, 
  328.     {1, 1, 0}, 
  329.     {1, 0, 1}, 
  330.     {1, 1, 0}, 
  331.     {1, 0, 0}, 
  332.     {1, 0, 0}, 
  333.     {0, 1, 0}, 
  334.     {1, 0, 0}, 
  335.    };    
  336.  
  337. int dyn_ch3[5][2] = { /* for 3/1 and 2/2 config */
  338.     {1, 1}, 
  339.     {1, 0}, 
  340.     {0, 1}, 
  341.     {0, 0}, 
  342.     {1, 0}, 
  343.    };    
  344.  
  345. int dyn_ch1[2][3] = { /* for 3/0 (+2/0) and 2/1 config */
  346.     {1, 1, 1}, 
  347.     {0, 1, 1}, 
  348.    };    
  349.  
  350. int T2[12], T3[12], T4[12], T5[12], T6[12];
  351. int T2outof[12], T3outof[12], T4outof[12]; /* L0 or R0 */
  352. int T2from[12], T3from[12], T4from[12];
  353. /***********************************************************************
  354. *
  355. *  Global Function Definitions
  356. *
  357. ***********************************************************************/
  358. void program_information(void)
  359. {
  360.  printf("ISO MPEG Audio Subgroup Software Simulation Group (1996)n");
  361.  printf("ISO 13818-3 MPEG-2 Audio Multichannel Encodern");
  362.  printf("%sn", VERSION);
  363. }
  364. /* The system uses a variety of data files.  By opening them via this
  365.    function, we can accommodate various locations. */
  366. FILE *OpenTableFile(char *name)
  367. {
  368. char fulname[80];
  369. char *envdir;
  370. FILE *f;
  371.      fulname[0] = '';
  372. #ifdef TABLES_PATH
  373.        strcpy(fulname, TABLES_PATH);   /* default relative path for tables */
  374. #endif /* TABLES_PATH */          /* (includes terminal path seperator */
  375. #ifdef UNIX                       /* envir. variables for UNIX only */
  376.        {
  377.         char *getenv(const char *);
  378.         envdir = getenv(MPEGTABENV);   /* check for environment */
  379.         if(envdir != NULL)
  380.             strcpy(fulname, envdir);
  381.         strcat(fulname, PATH_SEPARATOR);  /* add a "/" on the end */
  382.       }
  383. #endif /* UNIX */
  384.     strcat(fulname, name);
  385.     if( (f=fopen(fulname,"r"))==NULL ) {
  386.         fprintf(stderr,"OpenTable: could not find %sn", fulname);
  387. #ifdef UNIX
  388.           if(envdir != NULL)
  389.             fprintf(stderr,"Check %s directory '%s'n",MPEGTABENV, envdir);
  390.           else
  391.             fprintf(stderr,"Check local directory './%s' or setenv %sn",
  392.                     TABLES_PATH, MPEGTABENV);
  393. #else /* not unix : no environment variables */
  394. #ifdef TABLES_PATH
  395.             fprintf(stderr,"Check local directory './%s'n",TABLES_PATH);
  396. #endif /* TABLES_PATH */
  397. #endif /* UNIX */
  398.     }
  399.     return f;
  400. }
  401. /***********************************************************************
  402. /*
  403. /* Read one of the data files ("alloc_*") specifying the bit allocation/
  404. /* quatization parameters for each subband in layer II encoding
  405. /*
  406. /**********************************************************************/
  407. int read_bit_alloc(int table, al_table (*alloc))        /* read in table, return # subbands */
  408.           
  409.                 
  410. {
  411.         long a, b, c, d, i, j;
  412.         FILE *fp;
  413.         char name[16], t[80];
  414.         int sblim;
  415.         strcpy(name, "alloc_0");
  416.         switch (table) {
  417.                 case 0 : name[6] = '0';         break;
  418.                 case 1 : name[6] = '1';         break;
  419.                 case 2 : name[6] = '2';         break;
  420.                 case 3 : name[6] = '3';         break;
  421.                 case 4 : name[6] = '4';         break; /* for MultiLingual LSF , WtK 7/8/95 */
  422.                 default : name[6] = '0';
  423.         }
  424.         if (!(fp = OpenTableFile(name))) {
  425.                 printf("Please check bit allocation table %sn", name);
  426.                 exit(0);
  427.         }
  428. #ifdef PrintBitDebug
  429. printf("using bit allocation table %sn", name);
  430. #endif
  431.         fgets(t, 80, fp);
  432.         sscanf(t, "%dn", &sblim);
  433.         while (!feof(fp)) {
  434.                 fgets(t, 80, fp);
  435.                 sscanf(t, "%ld %ld %ld %ld %ld %ldn", &i, &j, &a, &b, &c, &d);
  436.                         (*alloc)[i][j].steps = a;
  437.                         (*alloc)[i][j].bits  = b;
  438.                         (*alloc)[i][j].group = c;
  439.                         (*alloc)[i][j].quant = d;
  440.         }
  441.         fclose(fp);
  442.         return sblim;
  443. }
  444. /***********************************************************************
  445. /*
  446. /* Using the decoded info the appropriate possible quantization per
  447. /* subband table is loaded
  448. /*
  449. /**********************************************************************/
  450. int pick_table (frame_params *fr_ps) /* choose table, load if necess, return # sb's */
  451. {
  452.     int table, tableml, lay, ws, bsp, br_per_ch, sfrq;
  453.     int sblim = fr_ps->sblimit;     /* return current value if no load */
  454.     lay = fr_ps->header->lay - 1;
  455.     bsp = fr_ps->header->bitrate_index;
  456.     /* Bug corrected by SWKim060695 */
  457.     br_per_ch = bitrate[lay][bsp] / (fr_ps->stereo /* + fr_ps->stereomc */);
  458.     ws = fr_ps->header->sampling_frequency;
  459.     sfrq = s_freq[ws];
  460.     /* decision rules refer to per-channel bitrates (kbits/sec/chan) */
  461.     if ((sfrq == 48 && br_per_ch >= 56) ||
  462. (br_per_ch >= 56 && br_per_ch <= 80))
  463. table = 0;
  464.     else if (sfrq != 48 && br_per_ch >= 96)
  465. table = 1;
  466.     else if (sfrq != 32 && br_per_ch <= 48)
  467. table = 2;
  468.     else
  469. table = 3;
  470.     if (fr_ps->tab_num != table)
  471.     {
  472. if (fr_ps->tab_num >= 0)
  473.     mem_free ((void **) &(fr_ps->alloc));
  474. fr_ps->alloc = (al_table *) mem_alloc (sizeof (al_table), "alloc");
  475. sblim = read_bit_alloc (fr_ps->tab_num = table, fr_ps->alloc);
  476.     }
  477.     if (verbosity >= 2)
  478. printf("sblim = %d,  table = %d,  br_per_ch = %dn", sblim, table, br_per_ch);
  479.     return (sblim);
  480. }
  481. /* choose MC and ML tables, load if necess, return # sb's */
  482. void mc_pick_table (frame_params *fr_ps)   
  483. {
  484.    int tablemc, tableml, ws, sfrq;
  485.    /* BUG corrected SWKim060695 */
  486.    ws = fr_ps->header->sampling_frequency;
  487.    sfrq = s_freq[ws];
  488.    /* decision rules refer to sampling frequency */
  489.    if (sfrq == 48)
  490.       tablemc = 0;
  491.    else
  492.       tablemc = 1;
  493.    if (fr_ps->tab_num_mc != tablemc)
  494.    {
  495.       if (fr_ps->tab_num >= 0)
  496.  mem_free ((void **)& (fr_ps->alloc_mc));
  497.       fr_ps->alloc_mc = (al_table *) mem_alloc (sizeof(al_table), "alloc_mc");
  498.       fr_ps->sblimit_mc = read_bit_alloc (fr_ps->tab_num_mc = tablemc, fr_ps->alloc_mc);
  499.    }
  500.     if (fr_ps->header->multiling_ch > 0)
  501.     {
  502. /* LSF MultiLingual 7/8/95 WtK */
  503. if (fr_ps->header->multiling_fs == 0)
  504. {
  505.     fr_ps->tab_num_ml = fr_ps->tab_num_mc;
  506.     fr_ps->alloc_ml   = fr_ps->alloc_mc;
  507.     fr_ps->sblimit_ml = fr_ps->sblimit_mc;
  508. }
  509. else
  510. {
  511.     tableml = 4;
  512.     if (fr_ps->tab_num_ml != tableml)
  513.     {
  514. if (fr_ps->tab_num_ml >= 0)
  515.     mem_free ((void **) &(fr_ps->alloc_ml));
  516. fr_ps->alloc_ml = (al_table *) mem_alloc (sizeof (al_table), "alloc_ml");
  517. fr_ps->sblimit_ml = read_bit_alloc (fr_ps->tab_num_ml = tableml, fr_ps->alloc_ml);
  518.     }
  519. } /* ml_fs==0 */
  520.     } /* ml_ch>0 */
  521.     if (verbosity >= 2)
  522.     {
  523. printf("Multchannel uses : sblim = %d,  table = %dn", fr_ps->sblimit_mc, fr_ps->tab_num_mc);
  524. if (fr_ps->header->multiling_ch > 0) 
  525.     printf ("Multilingual uses : sblim = %d, table = %dn", fr_ps->sblimit_ml, fr_ps->tab_num_ml);
  526.     }
  527. }
  528. int js_bound (int lay, int m_ext)
  529. {
  530.     static int jsb_table[3][4] =  { { 4, 8, 12, 16 }, { 4, 8, 12, 16},
  531.     { 0, 4, 8, 16} };  /* lay+m_e -> jsbound */
  532.     if (lay < 1 || lay > 3 || m_ext < 0 || m_ext > 3)
  533.     {
  534.         fprintf (stderr, "js_bound bad layer/modext (%d/%d)n", lay, m_ext);
  535.         exit (1);
  536.     }
  537.     return (jsb_table[lay-1][m_ext]);
  538. }
  539. void hdr_to_frps (frame_params *fr_ps) /* interpret data in hdr str to fields in fr_ps */
  540. {
  541.     layer *hdr = fr_ps->header;     /* (or pass in as arg?) */
  542.     fr_ps->actual_mode = hdr->mode;
  543.     if (hdr->mode != MPG_MD_NONE)
  544. fr_ps->stereo = (hdr->mode == MPG_MD_MONO) ? 1 : 2;
  545.     else
  546.      fr_ps->stereo = 0;
  547.     if (verbosity >= 2)
  548.         printf ("stereo = %d stereomc = %d stereoaug = %dn",
  549. fr_ps->stereo, fr_ps->stereomc, fr_ps->stereoaug);
  550.     if (hdr->lay == 2)
  551. fr_ps->sblimit = pick_table (fr_ps);
  552.     else
  553. fr_ps->sblimit = SBLIMIT;
  554.     if (hdr->mode == MPG_MD_JOINT_STEREO)
  555. fr_ps->jsbound = js_bound (hdr->lay, hdr->mode_ext);
  556.     else
  557. fr_ps->jsbound = fr_ps->sblimit;
  558.     if (hdr->multiling_ch > 0 && hdr->multiling_lay > 0)
  559.     {
  560. fprintf (stderr, "MultiLingual not in Layer 2!n exit.n");
  561. exit (1);
  562.     }
  563.     if (fr_ps->stereomc > 0 || hdr->lfe || hdr->multiling_ch > 0)
  564. mc_pick_table (fr_ps);
  565. }
  566. int BitrateIndex(int layr, int bRate)   /* convert bitrate in kbps to index */
  567.                         /* 1 or 2 */
  568.                         /* legal rates from 32 to 448 */
  569. {
  570. int     index = 0;
  571. int     found = 0;
  572.     while(!found && index<15)   {
  573.         if(bitrate[layr-1][index] == bRate)
  574.             found = 1;
  575.         else
  576.             ++index;
  577.     }
  578.     if(found)
  579.         return(index);
  580.     else {
  581.         fprintf(stderr, "BitrateIndex: %d (layer %d) is not a legal bitraten",
  582.                 bRate, layr);
  583.         return(-1);     /* Error! */
  584.     }
  585. }
  586. int SmpFrqIndex(long int sRate)  /* convert samp frq in Hz to index */
  587. /* for MultiLingual LSF                                                       */
  588. /* Note this function differs from the one called upon MPEG2 Audio-LSF coding */
  589. /* The value '16' is used to detect half sample rate of ML wrt. MC            */
  590. /* 7/8/95 WtK                                                                 */
  591. {
  592.     switch (sRate) {
  593.       case    44100    :   return( 0);     break;
  594.       case    48000    :   return( 1);     break;
  595.       case    32000    :   return( 2);     break;
  596.       case    22050    :   return(16);     break;
  597.       case    24000    :   return(17);     break;
  598.       case    16000    :   return(18);     break;
  599.       default          :   fprintf(stderr, "SmpFrqIndex: %ld is not a legal sample raten", sRate);
  600.                            return(-1);     /* Error! */
  601.     }
  602. }
  603. /*******************************************************************************
  604. *
  605. *  Allocate number of bytes of memory equal to "block".
  606. *
  607. *******************************************************************************/
  608. void *mem_alloc (long unsigned int block, char *item)
  609. {
  610. #ifndef MSDOS
  611.     void *ptr;
  612. #else
  613.     void _far *ptr;
  614. #endif
  615. #ifdef MACINTOSH
  616.     ptr = NewPtr (block);
  617. #endif
  618. #ifdef MSDOS
  619.     ptr = (void _far *) _fmalloc ((unsigned int) block); /* far memory, 92-07-08 sr */
  620. #endif
  621. #if ! defined (MACINTOSH) && ! defined (MSDOS)
  622.     ptr = (void *) malloc (block);
  623. #endif
  624.     if (ptr != NULL)
  625.     {
  626. #ifdef MSDOS
  627. _fmemset (ptr, 0, (unsigned int) block); /* far memory, 92-07-08 sr */
  628. #else
  629.         memset (ptr, 0, block);
  630. #endif
  631.     }
  632.     else
  633.     {
  634.         printf ("Unable to allocate %sn", item);
  635.         exit (1);
  636.     }
  637.     return (ptr);
  638. }
  639. /****************************************************************************
  640. *
  641. *  Free memory pointed to by "*ptr_addr".
  642. *
  643. *****************************************************************************/
  644. void    mem_free (void **ptr_addr)
  645. {
  646.     if (*ptr_addr != NULL)
  647.     {
  648. #ifdef  MACINTOSH
  649. DisposPtr (*ptr_addr);
  650. #else
  651. free (*ptr_addr);
  652. #endif
  653. *ptr_addr = NULL;
  654.     }
  655. }
  656. /****************************************************************************
  657. *
  658. *  Routines to convert between the Apple SANE extended floating point format
  659. *  and the IEEE double precision floating point format.  These routines are
  660. *  called from within the Audio Interchange File Format (AIFF) routines.
  661. *
  662. *****************************************************************************/
  663. /*
  664. *** Apple's 80-bit SANE extended has the following format:
  665.  1       15      1            63
  666. +-+-------------+-+-----------------------------+
  667. |s|       e     |i|            f                |
  668. +-+-------------+-+-----------------------------+
  669.   msb        lsb   msb                       lsb
  670. The value v of the number is determined by these fields as follows:
  671. If 0 <= e < 32767,              then v = (-1)^s * 2^(e-16383) * (i.f).
  672. If e == 32767 and f == 0,       then v = (-1)^s * (infinity), regardless of i.
  673. If e == 32767 and f != 0,       then v is a NaN, regardless of i.
  674. *** IEEE Draft Standard 754 Double Precision has the following format:
  675. MSB
  676. +-+---------+-----------------------------+
  677. |1| 11 Bits |           52 Bits           |
  678. +-+---------+-----------------------------+
  679.  ^     ^                ^
  680.  |     |                |
  681.  Sign  Exponent         Mantissa
  682. */
  683. /*****************************************************************************
  684. *
  685. *  double_to_extended()
  686. *
  687. *  Purpose:     Convert from IEEE double precision format to SANE extended
  688. *               format.
  689. *
  690. *  Passed:      Pointer to the double precision number and a pointer to what
  691. *               will hold the Apple SANE extended format value.
  692. *
  693. *  Outputs:     The SANE extended format pointer will be filled with the
  694. *               converted value.
  695. *
  696. *  Returned:    Nothing.
  697. *
  698. *****************************************************************************/
  699. void    double_to_extended(double *pd, char *ps)
  700. {
  701. #ifdef  MACINTOSH
  702.         x96tox80(pd, (extended *) ps);
  703. #else
  704. /* fixed bus alignment error, HP 27-may-93 */
  705. register unsigned long  top2bits;
  706. register unsigned short *ps2;
  707. register IEEE_DBL       *p_dbl;
  708. register SANE_EXT       *p_ext;
  709. SANE_EXT ext_align;
  710. char *c_align;
  711. int i;
  712.    p_dbl = (IEEE_DBL *) pd;
  713.    p_ext = &ext_align;
  714.    top2bits = p_dbl->hi & 0xc0000000;
  715.    p_ext->l1 = ((p_dbl->hi >> 4) & 0x3ff0000) | top2bits;
  716.    p_ext->l1 |= ((p_dbl->hi >> 5) & 0x7fff) | 0x8000;
  717.    p_ext->l2 = (p_dbl->hi << 27) & 0xf8000000;
  718.    p_ext->l2 |= ((p_dbl->lo >> 5) & 0x07ffffff);
  719.    ps2 = (unsigned short *) & (p_dbl->lo);
  720.    ps2++;
  721.    p_ext->s1 = (*ps2 << 11) & 0xf800;
  722.    c_align = (char *) p_ext;
  723.    for (i=0;i<10;i++)
  724.      ps[i] = c_align[i];
  725. #endif
  726. }
  727. /*****************************************************************************
  728. *
  729. *  extended_to_double()
  730. *
  731. *  Purpose:     Convert from SANE extended format to IEEE double precision
  732. *               format.
  733. *
  734. *  Passed:      Pointer to the Apple SANE extended format value and a pointer
  735. *               to what will hold the the IEEE double precision number.
  736. *
  737. *  Outputs:     The IEEE double precision format pointer will be filled with
  738. *               the converted value.
  739. *
  740. *  Returned:    Nothing.
  741. *
  742. *****************************************************************************/
  743. void    extended_to_double(char *ps, double *pd)
  744. {
  745. #ifdef  MACINTOSH
  746.    x80tox96((extended *) ps, pd);
  747. #else
  748. /* fixed bus alignment error, HP 27-may-93 */
  749. register unsigned long  top2bits;
  750. register IEEE_DBL       *p_dbl;
  751. register SANE_EXT       *p_ext;
  752. SANE_EXT ext_align;
  753. char *c_align;
  754. int i;
  755.    p_dbl = (IEEE_DBL *) pd;
  756.    p_ext = &ext_align;
  757.    c_align = (char *) p_ext;
  758.    for (i=0;i<10;i++)
  759.      c_align[i] = ps[i];
  760.    top2bits = p_ext->l1 & 0xc0000000;
  761.    p_dbl->hi = ((p_ext->l1 << 4) & 0x3ff00000) | top2bits;
  762.    p_dbl->hi |= (p_ext->l1 << 5) & 0xffff0;
  763.    p_dbl->hi |= (p_ext->l2 >> 27) & 0x1f;
  764.    p_dbl->lo = (p_ext->l2 << 5) & 0xffffffe0;
  765.    p_dbl->lo |= (unsigned long) ((p_ext->s1 >> 11) & 0x1f);
  766. #endif
  767. }
  768. /*****************************************************************************
  769. *
  770. *  Read Audio Interchange File Format (AIFF) headers.
  771. *
  772. *****************************************************************************/
  773. int aiff_read_headers (FILE *file_ptr, IFF_AIFF *aiff_ptr, int *byte_per_sample)
  774. {
  775.     register char   i;
  776.     register long   seek_offset;
  777.     
  778.     char  temp_sampleRate[10];
  779.     char  *dummy;
  780.     char  holder;
  781.     Chunk           FormChunk;
  782.     CommonChunk     CommChunk;
  783.     SoundDataChunk  SndDChunk;
  784.     identifier  ident;
  785.     if (fseek (file_ptr, 0, SEEK_SET) != 0)
  786. return (-1);
  787.     if (fread (&FormChunk, sizeof (Chunk), 1, file_ptr) != 1)
  788. return (-1);
  789. #ifdef MSDOS
  790.     holder = FormChunk.ckID[0];
  791.     FormChunk.ckID[0] = FormChunk.ckID[3];
  792.     FormChunk.ckID[3] = holder;
  793.     holder = FormChunk.ckID[1];
  794.     FormChunk.ckID[1] = FormChunk.ckID[2];
  795.     FormChunk.ckID[2] = holder;
  796. /* fixed bug in next line, HP 27-may-93 */
  797.     holder = FormChunk.formType[0];
  798.     FormChunk.formType[0] = FormChunk.formType[3];
  799.     FormChunk.formType[3] = holder;
  800.     holder = FormChunk.formType[1];
  801.     FormChunk.formType[1] = FormChunk.formType[2];
  802.     FormChunk.formType[2] = holder;
  803.     FormChunk.ckSize = _lrotl(FormChunk.ckSize, 8);
  804. #endif
  805. /* fixed bug in next line, HP 27-may-93 */
  806.     if (strncmp (FormChunk.ckID, IFF_ID_FORM, 4) != 0 ||
  807. strncmp (FormChunk.formType, IFF_ID_AIFF, 4) != 0)
  808. return (-1);  /* warning: different levels of indirection.7/8/92.sr*/
  809.     if (fread (&ident, sizeof (identifier), 1, file_ptr) != 1)
  810. return (-1);
  811. #ifdef MSDOS
  812.     holder = ident.name[0];
  813.     ident.name[0] = ident.name[3];
  814.     ident.name[3] = holder;
  815.     holder = ident.name[1];
  816.     ident.name[1] = ident.name[2];
  817.     ident.name[2] = holder;
  818.     ident.ck_length = _lrotl (ident.ck_length, 8);
  819. #endif
  820. /* fixed bug in next line, HP 27-may-93 */
  821.     while (strncmp (ident.name, IFF_ID_COMM, 4) != 0)
  822.     {
  823. dummy = (char *) mem_alloc (ident.ck_length * sizeof (char),  "dummy");
  824. if (fread (dummy, ident.ck_length, 1, file_ptr) != 1)
  825.     return (-1);
  826. mem_free ((void **) &dummy);
  827. /* fixed bug in next line, HP 27-may-93 */
  828. if (fread (&ident, sizeof (identifier), 1, file_ptr) != 1)
  829.    return (-1);
  830. #ifdef MSDOS
  831. holder = ident.name[0];
  832. ident.name[0] = ident.name[3];
  833. ident.name[3] = holder;
  834. holder = ident.name[1];
  835. ident.name[1] = ident.name[2];
  836. ident.name[2] = holder;
  837. ident.ck_length = _lrotl(ident.ck_length, 8);
  838. #endif
  839.     }
  840.     for (i = 0; i < 4; ++i)
  841. CommChunk.ckID[i] = ident.name[i];
  842.     CommChunk.ckSize = ident.ck_length;
  843.     if (fread (&CommChunk.numChannels, sizeof (short), 1, file_ptr) != 1)
  844. return (-1);
  845.     if (fread (&CommChunk.numSampleFrames, sizeof (unsigned long), 1, file_ptr) != 1)
  846. return (-1);
  847.     if (fread (&CommChunk.sampleSize, sizeof (short), 1, file_ptr) != 1)
  848. return (-1);
  849.     if (fread (CommChunk.sampleRate, sizeof (char[10]), 1, file_ptr) != 1)
  850. return (-1);
  851. #ifdef MSDOS
  852.     CommChunk.sampleSize = _rotl (CommChunk.sampleSize, 8);
  853.     CommChunk.ckSize = _lrotl (CommChunk.ckSize, 8);
  854.     CommChunk.numChannels = _rotl (CommChunk.numChannels, 8);
  855.     CommChunk.numSampleFrames = _lrotl (CommChunk.numSampleFrames, 8);
  856. #endif
  857.     *byte_per_sample = ceil ((double) CommChunk.sampleSize / 8);
  858.     for (i = 0; i < sizeof (char[10]); i++)
  859. temp_sampleRate[i] = CommChunk.sampleRate[i];
  860.     extended_to_double (temp_sampleRate, &aiff_ptr->sampleRate);
  861. /* to start the search again from the beginning, HP 27-may-93 */
  862.     fseek (file_ptr, sizeof (Chunk), SEEK_SET);
  863.     if (fread (&ident, sizeof (identifier), 1, file_ptr) != 1)
  864. return (-1);
  865. #ifdef MSDOS
  866.     holder = ident.name[0];
  867.     ident.name[0] = ident.name[3];
  868.     ident.name[3] = holder;
  869.     holder = ident.name[1];
  870.     ident.name[1] = ident.name[2];
  871.     ident.name[2] = holder;
  872.     ident.ck_length = _lrotl (ident.ck_length, 8);
  873. #endif
  874. /* fixed bug in next line, HP 27-may-93 */
  875.     while (strncmp (ident.name, IFF_ID_SSND, 4) != 0)
  876.     {
  877. dummy = (char *) mem_alloc (ident.ck_length * sizeof (char),  "dummy");
  878. if (fread (dummy, ident.ck_length, 1, file_ptr) != 1)
  879.     return (-1);
  880. mem_free ((void **) &dummy);
  881. if (fread (&ident, sizeof (identifier), 1, file_ptr) != 1)
  882.     return (-1);
  883. /* the following lines are not necessary, HP 27-may-93 */
  884. /*
  885. {
  886. fseek (file_ptr, 0, SEEK_SET);
  887. if (fread (&ident, sizeof (identifier), 1, file_ptr) != 1)
  888. return (-1);
  889. }
  890. */
  891. #ifdef MSDOS
  892. holder = ident.name[0];
  893. ident.name[0] = ident.name[3];
  894. ident.name[3] = holder;
  895. holder = ident.name[1];
  896. ident.name[1] = ident.name[2];
  897. ident.name[2] = holder;
  898. ident.ck_length = _lrotl (ident.ck_length, 8);
  899. #endif
  900.     }
  901.     for (i = 0; i < 4; ++i)
  902. SndDChunk.ckID[i] = ident.name[i];
  903.     SndDChunk.ckSize = ident.ck_length;
  904.     if (fread (&SndDChunk.offset, sizeof (unsigned long), 1, file_ptr) != 1)
  905. return (-1);
  906.     if (fread (&SndDChunk.blockSize, sizeof (unsigned long), 1, file_ptr) != 1)
  907. return (-1);
  908. #ifdef MSDOS
  909.     SndDChunk.offset = _lrotl (SndDChunk.offset, 8);
  910.     SndDChunk.blockSize = _lrotl (SndDChunk.blockSize, 8);
  911. #endif
  912. /* why seek behinde the SSND Chunk ????, HP 27-may-93 */
  913. /*
  914.     seek_offset = SndDChunk.ckSize - sizeof (SoundDataChunk) + sizeof (ChunkHeader);
  915.     if (fseek (file_ptr, seek_offset, SEEK_CUR) != 0)
  916. return (-1);
  917. */
  918.     aiff_ptr->numChannels       = CommChunk.numChannels;
  919.     aiff_ptr->numSampleFrames   = CommChunk.numSampleFrames;
  920.     aiff_ptr->sampleSize        = CommChunk.sampleSize;
  921.     aiff_ptr->blkAlgn.offset    = SndDChunk.offset;
  922.     aiff_ptr->blkAlgn.blockSize = SndDChunk.blockSize;
  923.     strncpy (aiff_ptr->sampleType, SndDChunk.ckID, 4);
  924.  
  925.     return (0);
  926. }
  927. /*****************************************************************************
  928. *
  929. *  Seek past some Audio Interchange File Format (AIFF) headers to sound data.
  930. *
  931. *****************************************************************************/
  932. int aiff_seek_to_sound_data (FILE *file_ptr)
  933. {
  934.     if (fseek (file_ptr, sizeof (Chunk) + sizeof (SoundDataChunk), SEEK_SET) != 0)
  935. return (-1);
  936.     else
  937. return (0);
  938. }
  939. /*******************************************************************************
  940. *
  941. *  Write Audio Interchange File Format (AIFF) headers.
  942. *
  943. *******************************************************************************/
  944. int aiff_write_headers (FILE *file_ptr, IFF_AIFF *aiff_ptr)
  945. {
  946.     register char   i;
  947.     register long   seek_offset;
  948.     
  949.     char            temp_sampleRate[10];
  950.     
  951.     Chunk           FormChunk;
  952.     CommonChunk     CommChunk;
  953.     SoundDataChunk  SndDChunk;
  954.     strcpy (FormChunk.ckID, IFF_ID_FORM);
  955.     strcpy (FormChunk.formType, IFF_ID_AIFF);
  956.     strcpy (CommChunk.ckID, IFF_ID_COMM);  /*7/7/93,SR,changed FormChunk to CommChunk*/
  957.     double_to_extended (&aiff_ptr->sampleRate, temp_sampleRate);
  958.     for (i = 0; i < sizeof (char[10]); i++)
  959. CommChunk.sampleRate[i] = temp_sampleRate[i];
  960.     CommChunk.numChannels             = aiff_ptr->numChannels;
  961.     CommChunk.numSampleFrames         = aiff_ptr->numSampleFrames;
  962.     CommChunk.sampleSize              = aiff_ptr->sampleSize;
  963.     SndDChunk.offset                  = aiff_ptr->blkAlgn.offset;
  964.     SndDChunk.blockSize               = aiff_ptr->blkAlgn.blockSize;
  965.     strncpy (SndDChunk.ckID, aiff_ptr->sampleType,  4);
  966.  
  967.     CommChunk.ckSize = sizeof (CommChunk.numChannels) +
  968.        sizeof (CommChunk.numSampleFrames) +
  969.        sizeof (CommChunk.sampleSize) +
  970.        sizeof (CommChunk.sampleRate);
  971.  
  972.     SndDChunk.ckSize = sizeof (SoundDataChunk) - sizeof (ChunkHeader) +
  973. (CommChunk.sampleSize + BITS_IN_A_BYTE - 1) / BITS_IN_A_BYTE *
  974. CommChunk.numChannels * CommChunk.numSampleFrames;
  975.  
  976.     FormChunk.ckSize = sizeof (Chunk) + SndDChunk.ckSize + sizeof (ChunkHeader) +
  977. CommChunk.ckSize;
  978.  
  979.     if (fseek (file_ptr, 0, SEEK_SET) != 0)
  980. return (-1);
  981.  
  982.     if (fwrite (&FormChunk, sizeof (Chunk), 1, file_ptr) != 1)
  983. return (-1);
  984.  
  985.     if (fwrite (&SndDChunk, sizeof (SoundDataChunk), 1, file_ptr) != 1)
  986. return (-1);
  987.  
  988.     seek_offset = SndDChunk.ckSize - sizeof (SoundDataChunk) + sizeof (ChunkHeader);
  989.  
  990.     if (fseek (file_ptr, seek_offset, SEEK_CUR) != 0)
  991. return (-1);
  992.  
  993.     if (fwrite (CommChunk.ckID, sizeof (ID), 1, file_ptr) != 1)
  994. return (-1);
  995.  
  996.     if (fwrite (&CommChunk.ckSize, sizeof (long), 1, file_ptr) != 1)
  997. return (-1);
  998.  
  999.     if (fwrite (&CommChunk.numChannels, sizeof (short), 1, file_ptr) != 1)
  1000. return (-1);
  1001.  
  1002.     if (fwrite (&CommChunk.numSampleFrames, sizeof (unsigned long), 1, file_ptr) != 1)
  1003. return (-1);
  1004.  
  1005.     if (fwrite (&CommChunk.sampleSize, sizeof (short), 1, file_ptr) != 1)
  1006. return (-1);
  1007.  
  1008.     if (fwrite (CommChunk.sampleRate, sizeof (char[10]), 1, file_ptr) != 1)
  1009. return (-1);
  1010.  
  1011.     return (0);
  1012. }
  1013. /*****************************************************************************
  1014. *
  1015. *  bit_stream.c package
  1016. *  Author:  Jean-Georges Fritsch, C-Cube Microsystems
  1017. *
  1018. *****************************************************************************/
  1019. /********************************************************************
  1020.   This package provides functions to write (exclusive or read)
  1021.   information from (exclusive or to) the bit stream.
  1022.   If the bit stream is opened in read mode only the get functions are
  1023.   available. If the bit stream is opened in write mode only the put
  1024.   functions are available.
  1025. ********************************************************************/
  1026. /* refill the buffer from the input device when the buffer becomes empty    */
  1027. int refill_buffer(Bit_stream_struc *bs)
  1028.                         /* bit stream structure */
  1029. {
  1030.    register int i=bs->buf_size-2-bs->buf_byte_idx;
  1031.    register unsigned long n;
  1032.    register int index=0;
  1033.    char val[2];
  1034.    while ((i>=0) && (!bs->eob)) {
  1035.       if (bs->format == BINARY)
  1036.          n = fread(&bs->buf[i--], sizeof(unsigned char), 1, bs->pt);
  1037.       else {
  1038.   while((index < 2) && n) {
  1039. n = fread(&val[index], sizeof(char), 1, bs->pt);
  1040. switch (val[index]) {
  1041. case 0x30:
  1042. case 0x31:
  1043. case 0x32:
  1044. case 0x33:
  1045. case 0x34:
  1046. case 0x35:
  1047. case 0x36:
  1048. case 0x37:
  1049. case 0x38:
  1050. case 0x39:
  1051. case 0x41:
  1052. case 0x42:
  1053. case 0x43:
  1054. case 0x44:
  1055. case 0x45:
  1056. case 0x46:
  1057. index++;
  1058. break;
  1059. default: break;
  1060. }
  1061.    }
  1062.            if (val[0] <= 0x39) bs->buf[i] = (val[0] - 0x30) << 4;
  1063.                  else  bs->buf[i] = (val[0] - 0x37) << 4;
  1064.            if (val[1] <= 0x39) bs->buf[i--] |= (val[1] - 0x30);
  1065.                  else  bs->buf[i--] |= (val[1] - 0x37);
  1066.    index = 0;
  1067.       }
  1068.       if (!n) {
  1069.          bs->eob= i+1;
  1070.       }
  1071.     }
  1072. }
  1073. static char *he = "0123456789ABCDEF";
  1074. /* empty the buffer to the output device when the buffer becomes full */
  1075. void empty_buffer(Bit_stream_struc *bs, int minimum)
  1076.                         /* bit stream structure */
  1077.                         /* end of the buffer to empty */
  1078. {
  1079.    register int i;
  1080. #if BS_FORMAT == BINARY
  1081.    for (i=bs->buf_size-1;i>=minimum;i--)
  1082.       fwrite(&bs->buf[i], sizeof(unsigned char), 1, bs->pt);
  1083. #else
  1084.    for (i=bs->buf_size-1;i>=minimum;i--) {
  1085.        char val[2];
  1086.        val[0] = he[((bs->buf[i] >> 4) & 0x0F)];
  1087.        val[1] = he[(bs->buf[i] & 0x0F)];
  1088.        fwrite(val, sizeof(char), 2, bs->pt);
  1089.    }
  1090. #endif
  1091.    for (i=minimum-1; i>=0; i--)
  1092.        bs->buf[bs->buf_size - minimum + i] = bs->buf[i];
  1093.    bs->buf_byte_idx = bs->buf_size -1 - minimum;
  1094.    bs->buf_bit_idx = 8;
  1095. }
  1096. /* open the device to write the bit stream into it */
  1097. void open_bit_stream_w(Bit_stream_struc *bs, char *bs_filenam, int size)
  1098.                         /* bit stream structure */
  1099.                         /* name of the bit stream file */
  1100.                         /* size of the buffer */
  1101. {
  1102.    if ((bs->pt = fopen(bs_filenam, "w+")) == NULL) {
  1103.       printf("Could not create "%s".n", bs_filenam);
  1104.       exit(0);
  1105.    }
  1106.    alloc_buffer(bs, size);
  1107.    bs->buf_byte_idx = size-1;
  1108.    bs->buf_bit_idx=8;
  1109.    bs->totbit=0;
  1110.    bs->mode = WRITE_MODE;
  1111.    bs->eob = FALSE;
  1112.    bs->eobs = FALSE;
  1113. }
  1114. /* open the device to read the bit stream from it */
  1115. void open_bit_stream_r(Bit_stream_struc *bs, char *bs_filenam, int size)
  1116.                         /* bit stream structure */
  1117.                         /* name of the bit stream file */
  1118.                         /* size of the buffer */
  1119. {
  1120.    register unsigned long n;
  1121.    register int i=0;
  1122.    register unsigned char flag = 1;
  1123.    unsigned char val;
  1124.    if ((bs->pt = fopen(bs_filenam, "rb")) == NULL) {
  1125.       printf("Could not find "%s".n", bs_filenam);
  1126.       exit(0);
  1127.    }
  1128.    do {
  1129.      n = fread(&val, sizeof(unsigned char), 1, bs->pt);
  1130.      switch (val) {
  1131.       case 0x30:
  1132.       case 0x31:
  1133.       case 0x32:
  1134.       case 0x33:
  1135.       case 0x34:
  1136.       case 0x35:
  1137.       case 0x36:
  1138.       case 0x37:
  1139.       case 0x38:
  1140.       case 0x39:
  1141.       case 0x41:
  1142.       case 0x42:
  1143.       case 0x43:
  1144.       case 0x44:
  1145.       case 0x45:
  1146.       case 0x46:
  1147.       case 0xa:  /* n */
  1148.           break;
  1149.       default: /* detection of an binary character */
  1150.           flag--;
  1151.           i = 300;
  1152.           break;
  1153.      }
  1154.    } while (flag & n);
  1155.    if (flag) {
  1156.       if (verbosity >= 2) printf ("the bit stream file %s is an ASCII filen", bs_filenam);
  1157.       bs->format = ASCII;
  1158.    }
  1159.    else {
  1160.       bs->format = BINARY;
  1161.       if (verbosity >= 2) printf ("the bit stream file %s is a BINARY filen", bs_filenam);
  1162.    }
  1163.    fclose(bs->pt);
  1164.    if ((bs->pt = fopen(bs_filenam, "rb")) == NULL) {
  1165.       printf("Could not find "%s".n", bs_filenam);
  1166.       exit(0);
  1167.    }
  1168.    alloc_buffer(bs, size);
  1169.    bs->buf_byte_idx=0;
  1170.    bs->buf_bit_idx=0;
  1171.    bs->totbit=0;
  1172.    bs->mode = READ_MODE;
  1173.    bs->eob = FALSE;
  1174.    bs->eobs = FALSE;
  1175. }
  1176. /* close the device containing the bit stream after a read process */
  1177. void close_bit_stream_r (Bit_stream_struc *bs)
  1178. {
  1179.     fclose (bs->pt);
  1180.     desalloc_buffer (bs);
  1181. }
  1182. /*close the device containing the bit stream after a write process*/
  1183. void close_bit_stream_w (Bit_stream_struc *bs)
  1184. {
  1185.     empty_buffer (bs, bs->buf_byte_idx + 1);
  1186.     fclose (bs->pt);
  1187.     desalloc_buffer (bs);
  1188. }
  1189. /* open and initialize the buffer; */
  1190. void alloc_buffer (Bit_stream_struc *bs, int size)
  1191. {
  1192.     bs->buf = (unsigned char *) mem_alloc (size * sizeof (unsigned char), "buffer");
  1193.     bs->buf_size = size;
  1194. }
  1195. /* empty and close the buffer */
  1196. void desalloc_buffer (Bit_stream_struc *bs)
  1197. {
  1198.    free (bs->buf);
  1199. }
  1200. int putmask[9]={0x0, 0x1, 0x3, 0x7, 0xf, 0x1f, 0x3f, 0x7f, 0xff};
  1201. int mask[8]={0x1, 0x2, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80};
  1202. /*read 1 bit from the bit stream */
  1203. unsigned int get1bit(Bit_stream_struc *bs)
  1204.                         /* bit stream structure */
  1205. {
  1206.    unsigned int bit;
  1207.    register int i;
  1208.    bs->totbit++;
  1209.    if (!bs->buf_bit_idx) {
  1210.         bs->buf_bit_idx = 8;
  1211.         bs->buf_byte_idx--;
  1212.         if ((bs->buf_byte_idx < MINIMUM) || (bs->buf_byte_idx < bs->eob)) {
  1213.              if (bs->eob)
  1214.                 bs->eobs = TRUE;
  1215.              else {
  1216.                 for (i=bs->buf_byte_idx; i>=0;i--)
  1217.                   bs->buf[bs->buf_size-1-bs->buf_byte_idx+i] = bs->buf[i];
  1218.                 refill_buffer(bs);
  1219.                 bs->buf_byte_idx = bs->buf_size-1;
  1220.              }
  1221.         }
  1222.    }
  1223.    bit = bs->buf[bs->buf_byte_idx]&mask[bs->buf_bit_idx-1];
  1224.    bit = bit >> (bs->buf_bit_idx-1);
  1225.    bs->buf_bit_idx--;
  1226. #ifdef PrintBitDebug
  1227.    printf ("pos: %5d getbits: %2d code: %4x val: %5dn",
  1228. bs->totbit-1,  1, bit, bit);
  1229.    fflush (stdout);
  1230. #endif
  1231.    return(bit);
  1232. }
  1233. /*write 1 bit from the bit stream */
  1234. void put1bit(Bit_stream_struc *bs, int bit)
  1235.                         /* bit stream structure */
  1236.                         /* bit to write into the buffer */
  1237. {
  1238.    register int i;
  1239. #ifdef PrintBitDebug
  1240.    printf ("pos: %5d putbits: %2d code: %4x val: %5dn",
  1241. bs->totbit,  1, bit, bit);
  1242.    fflush (stdout);
  1243. #endif
  1244.    bs->totbit++;
  1245.    bs->buf[bs->buf_byte_idx] |= (bit&0x1) << (bs->buf_bit_idx-1);
  1246.    bs->buf_bit_idx--;
  1247.    if (!bs->buf_bit_idx) {
  1248.        bs->buf_bit_idx = 8;
  1249.        bs->buf_byte_idx--;
  1250.        if (bs->buf_byte_idx < 0)
  1251.           empty_buffer(bs, MINIMUM);
  1252.        bs->buf[bs->buf_byte_idx] = 0;
  1253.    }
  1254. }
  1255. /*read N bit from the bit stream */
  1256. unsigned long getbits(Bit_stream_struc *bs, int N)
  1257.                         /* bit stream structure */
  1258.                         /* number of bits to read from the bit stream */
  1259. {
  1260.  unsigned long val=0;
  1261.  register int i;
  1262.  register int j = N;
  1263.  register int k, tmp;
  1264.  if (N > MAX_LENGTH)
  1265.     printf("Cannot read or write more than %d bits at a time.n", MAX_LENGTH);
  1266.  bs->totbit += N;
  1267.  while (j > 0) {
  1268.    if (!bs->buf_bit_idx) {
  1269.         bs->buf_bit_idx = 8;
  1270.         bs->buf_byte_idx--;
  1271.         if ((bs->buf_byte_idx < MINIMUM) || (bs->buf_byte_idx < bs->eob)) {
  1272.              if (bs->eob)
  1273.                 bs->eobs = TRUE;
  1274.              else {
  1275.                 for (i=bs->buf_byte_idx; i>=0;i--)
  1276.                    bs->buf[bs->buf_size-1-bs->buf_byte_idx+i] = bs->buf[i];
  1277.                 refill_buffer(bs);
  1278.                 bs->buf_byte_idx = bs->buf_size-1;
  1279.              }
  1280.         }
  1281.    }
  1282.    k = MIN (j, bs->buf_bit_idx);
  1283.    tmp = bs->buf[bs->buf_byte_idx]&putmask[bs->buf_bit_idx];
  1284.    tmp = tmp >> (bs->buf_bit_idx-k);
  1285.    val |= tmp << (j-k);
  1286.    bs->buf_bit_idx -= k;
  1287.    j -= k;
  1288.  }
  1289. #ifdef PrintBitDebug
  1290.  printf ("pos: %5d getbits: %2d code: %4x val: %5dn", 
  1291.  bs->totbit - N,  N, val, val);
  1292.  fflush (stdout);
  1293. #endif
  1294.  return(val);
  1295. }
  1296. /*write N bits into the bit stream */
  1297. void putbits(Bit_stream_struc *bs, unsigned int val, int N)
  1298.                         /* bit stream structure */
  1299.                         /* val to write into the buffer */
  1300.                         /* number of bits of val */
  1301. {
  1302.  register int i;
  1303.  register int j = N;
  1304.  register int k, tmp;
  1305.  if (N > MAX_LENGTH)
  1306.     printf("Cannot read or write more than %d bits at a time.n", MAX_LENGTH);
  1307. #ifdef PrintBitDebug
  1308.  printf ("pos: %5d putbits: %2d code: %4x val: %5dn", 
  1309.  bs->totbit,  N, val, val);
  1310.  fflush (stdout);
  1311. #endif
  1312.  bs->totbit += N;
  1313.  while (j > 0) {
  1314.    k = MIN(j, bs->buf_bit_idx);
  1315.    tmp = val >> (j-k);
  1316.    bs->buf[bs->buf_byte_idx] |= (tmp&putmask[k]) << (bs->buf_bit_idx-k);
  1317.    bs->buf_bit_idx -= k;
  1318.    if (!bs->buf_bit_idx) {
  1319.        bs->buf_bit_idx = 8;
  1320.        bs->buf_byte_idx--;
  1321.        if (bs->buf_byte_idx < 0)
  1322.           empty_buffer(bs, MINIMUM);
  1323.        bs->buf[bs->buf_byte_idx] = 0;
  1324.    }
  1325.    j -= k;
  1326.  }
  1327. }
  1328. /*return the current bit stream length (in bits)*/
  1329. unsigned long sstell(Bit_stream_struc *bs)
  1330.                         /* bit stream structure */
  1331. {
  1332.   return(bs->totbit);
  1333. }
  1334. /*return the status of the bit stream*/
  1335. /* returns 1 if end of bit stream was reached */
  1336. /* returns 0 if end of bit stream was not reached */
  1337. int end_bs(Bit_stream_struc *bs)
  1338.                         /* bit stream structure */
  1339. {
  1340.   return(bs->eobs);
  1341. }
  1342. /*****************************************************************************
  1343. *
  1344. *  End of bit_stream.c package
  1345. *
  1346. *****************************************************************************/
  1347. int transmission_channel (frame_params *fr_ps, int sbgr, int m)
  1348. {
  1349.     int config = fr_ps->config;
  1350.     int tca = fr_ps->header->tc_alloc[sbgr];
  1351. #ifdef Augmentation_7ch
  1352.     int aug_tca = fr_ps->header->aug_tc_alloc[sbgr];
  1353. #endif
  1354.     /* 960627 FdB TCA table dependent on configuration */
  1355.     if (config == 320)
  1356. #ifdef Augmentation_7ch
  1357. if (m >= 5)
  1358.     return (transmission_channel7[aug_tca][m-5]); /* 5/2 */
  1359. else
  1360. #endif
  1361.     return (transmission_channel5[tca][m]); /* 3/2 */
  1362.     else if (config == 310)
  1363. return (transmission_channel4a[tca][m]); /* 3/1 */
  1364.     else if (config == 220)
  1365. return (transmission_channel4b[tca][m]); /* 2/2 */
  1366.     else if (config == 300 || config == 302 || config == 210)
  1367. return (transmission_channel3[tca][m]); /* 3/0 (+2/0) and 2/1 */
  1368.     else
  1369. return (m);
  1370. }
  1371. int dyn_ch (frame_params *fr_ps, int sbgr, int m)
  1372. {
  1373.     int config = fr_ps->config;
  1374.     int dynx = fr_ps->header->dyn_cross[sbgr];
  1375.     int dynx2stereo = fr_ps->header->dyn_second_stereo[sbgr];
  1376. #ifdef Augmentation_7ch
  1377.     int aug_dynx = fr_ps->header->aug_dyn_cross[sbgr];
  1378. #endif
  1379.     /* 960627 FdB Dyn_ch table dependent on configuration */
  1380.     if (config == 320)
  1381. #ifdef Augmentation_7ch
  1382. if (m >= 5)
  1383.     return (dyn_ch5[aug_dynx][m-5]);
  1384. else
  1385. #endif
  1386.     return (dyn_ch4[dynx][m-2]);
  1387.     else if (config == 310 || config == 220)
  1388. return (dyn_ch3[dynx][m-2]);
  1389.     else if (config == 300 || config == 302 || config == 210)
  1390.     {
  1391. if (config == 302 && dynx2stereo && m == 4)
  1392.     return (0);
  1393. else
  1394.     return (dyn_ch1[dynx][m-2]);
  1395.     }
  1396.     else if (config == 202 && dynx2stereo && m == 3)
  1397. return (0);
  1398.     else if (config == 102 && dynx2stereo && m == 2)
  1399. return (0);
  1400.     else
  1401. return (1);
  1402. }
  1403. int dyn_bbal (int config, int center, int dynx, int sbgr)
  1404. {
  1405.     /* 960627 FdB Dyn_ch table dependent on configuration */
  1406.     if (config == 320)
  1407.     {
  1408. if (center == 3)
  1409.     return (dyn_bbal4PhC[dynx][sbgr]);
  1410. else
  1411.     return (dyn_bbal4[dynx][sbgr]);
  1412.     }
  1413.     else if (config == 310 || config == 220)
  1414.     {
  1415. if (center == 3)
  1416.     return (dyn_bbal3PhC[dynx][sbgr]);
  1417. else
  1418.     return (dyn_bbal3[dynx][sbgr]);
  1419.     }
  1420.     else if (config == 300 || config == 302 || config == 210)
  1421.     {
  1422. if (center == 3)
  1423.     return (dyn_bbal1PhC[dynx][sbgr]);
  1424. else
  1425.     return (dyn_bbal1[dynx][sbgr]);
  1426.     }
  1427.     else
  1428. return (0);
  1429. }
  1430. int dyn_bbal_2ndst (int dynx, int sbgr)
  1431. {
  1432.     return (dyn_bbal4[dynx][sbgr]);
  1433. }
  1434. #ifdef Augmentation_7ch
  1435. int dyn_bbal_aug (int aug_dynx, int sbgr)
  1436. {
  1437.     /* 960627 FdB Dyn_ch table dependent on configuration */
  1438.     return (dyn_bbal5[aug_dynx][sbgr]);
  1439. }
  1440. #endif
  1441. void init_mc_pred (frame_params *fr_ps)
  1442. {
  1443.     layer *info = fr_ps->header;
  1444.     int i, j, k;
  1445.     switch (fr_ps->config)
  1446.     {
  1447.     case 320: for (i = 0; i < 16; i++) n_pred_coef[i] = n_pred_coef4[i]; break;
  1448.     case 310:
  1449.     case 220: for (i = 0; i < 16; i++) n_pred_coef[i] = n_pred_coef3[i]; break;
  1450.     case 300:
  1451.     case 302:
  1452.     case 210: for (i = 0; i < 16; i++) n_pred_coef[i] = n_pred_coef1[i]; break;
  1453.     default: for (i = 0; i < 16; i++) n_pred_coef[i] = 0; break;
  1454.     }
  1455.     for (i = 0; i < 8; i++)
  1456.     {
  1457. info->mc_pred[i] = 0;
  1458. for (j = 0; j < 6; j++)
  1459. {
  1460.     info->delay_comp[i][j] = 0;
  1461.     info->predsi[i][j] = 0;
  1462.     for (k = 0; k < 3; k++)
  1463. info->pred_coef[i][j][k] = 127;
  1464. }  
  1465.     }
  1466. }
  1467. void set_mc_pred (frame_params *fr_ps)
  1468. {
  1469.     layer *info = fr_ps->header;
  1470.     int config = fr_ps->config;
  1471.     int dynx;
  1472.     int i, j, k, npred;
  1473.     for (i = 0; i < 8; i++)
  1474.     {
  1475. info->mc_pred[i] = rand () % 2;
  1476. if (info->mc_pred[i])
  1477. {
  1478.     dynx = fr_ps->header->dyn_cross[i];
  1479.     npred = n_pred_coef[dynx];
  1480.     for (j = 0; j < npred; j++)
  1481.     {
  1482. info->predsi[i][j] = rand () % 4;
  1483. if (info->predsi[i][j])
  1484. {
  1485.     info->delay_comp[i][j] = rand () % 8;
  1486.     for (k = 0; k < info->predsi[i][j]; k++)
  1487. info->pred_coef[i][j][k] = rand () % 256;
  1488. }
  1489.     }  
  1490. }
  1491.     }
  1492. }
  1493. /*****************************************************************************
  1494. *
  1495. *  CRC error protection package
  1496. *
  1497. *****************************************************************************/
  1498. void I_CRC_calc (frame_params *fr_ps, unsigned int (*bit_alloc)[32], unsigned int *crc)
  1499. {
  1500.     int i, k;
  1501.     layer *info = fr_ps->header;
  1502.     int stereo  = fr_ps->stereo;
  1503.     int jsbound = fr_ps->jsbound;
  1504.     *crc = 0xffff; /* changed from '0' 92-08-11 shn */
  1505.     update_CRC(info->bitrate_index, 4, crc);
  1506.     update_CRC(info->sampling_frequency, 2, crc);
  1507.     update_CRC(info->padding, 1, crc);
  1508.     update_CRC(info->extension, 1, crc);
  1509.     update_CRC(info->mode, 2, crc);
  1510.     update_CRC(info->mode_ext, 2, crc);
  1511.     update_CRC(info->copyright, 1, crc);
  1512.     update_CRC(info->original, 1, crc);
  1513.     update_CRC(info->emphasis, 2, crc);
  1514.     for (i=0;i<SBLIMIT;i++)
  1515.     for (k=0;k<((i<jsbound)?stereo:1);k++)
  1516.     update_CRC(bit_alloc[k][i], 4, crc);
  1517. }
  1518. void II_CRC_calc (frame_params *fr_ps, unsigned int (*bit_alloc)[32], unsigned int (*scfsi)[32], unsigned int *crc)
  1519. {
  1520.     int i, k;
  1521.     layer *info = fr_ps->header;
  1522.     int stereo  = fr_ps->stereo;
  1523.     int sblimit = fr_ps->sblimit;
  1524.     int jsbound = fr_ps->jsbound;
  1525.     al_table *alloc = fr_ps->alloc;
  1526.     *crc = 0xffff; /* changed from '0' 92-08-11 shn */
  1527.     update_CRC(info->bitrate_index, 4, crc);
  1528.     update_CRC(info->sampling_frequency, 2, crc);
  1529.     update_CRC(info->padding, 1, crc);
  1530.     update_CRC(info->extension, 1, crc);
  1531.     update_CRC(info->mode, 2, crc);
  1532.     update_CRC(info->mode_ext, 2, crc);
  1533.     update_CRC(info->copyright, 1, crc);
  1534.     update_CRC(info->original, 1, crc);
  1535.     update_CRC(info->emphasis, 2, crc);
  1536.     for (i=0;i<sblimit;i++)
  1537.     for (k=0;k<((i<jsbound)?stereo:1);k++)
  1538.     update_CRC(bit_alloc[k][i], (*alloc)[i][0].bits, crc);
  1539.     for (i=0;i<sblimit;i++)
  1540.     for (k=0;k<stereo;k++)
  1541.     if (bit_alloc[k][i])
  1542.     update_CRC(scfsi[k][i], 2, crc);
  1543. }
  1544. void II_CRC_calc_mc (frame_params *fr_ps, unsigned int (*bit_alloc)[32], unsigned int lfe_alloc, unsigned int (*scfsi)[32], unsigned int *crc)
  1545. {
  1546.     int i, k, m, l;
  1547.     layer *info  = fr_ps->header;
  1548.     int nr_tc    = fr_ps->stereo + fr_ps->stereomc;
  1549.     int center   = info->center;
  1550.     int surround = info->surround;
  1551.     int sblimit  = fr_ps->sblimit_mc;
  1552.     al_table *alloc = fr_ps->alloc_mc;
  1553.     
  1554.     *crc = 0xffff; /* changed from '0' 92-08-11 shn */
  1555.     update_CRC(info->ext_bit_stream_present, 1, crc);
  1556.     if(info->ext_bit_stream_present == 1)
  1557.         update_CRC(info->n_ad_bytes, 8, crc);
  1558.     update_CRC(center, 2, crc);
  1559.     update_CRC(surround, 2, crc);
  1560.     update_CRC(info->lfe, 1, crc);
  1561.     update_CRC(info->audio_mix, 1, crc);
  1562.     update_CRC(info->matrix, 2, crc);
  1563.     update_CRC(info->multiling_ch, 3, crc);
  1564.     update_CRC(info->multiling_fs, 1, crc);
  1565.     update_CRC(info->multiling_lay, 1, crc);
  1566.     update_CRC(info->copy_ident_bit, 1, crc);
  1567.     update_CRC(info->copy_ident_start, 1, crc);
  1568.     
  1569.     update_CRC(info->tc_sbgr_select, 1, crc);
  1570.     update_CRC(info->dyn_cross_on, 1, crc);
  1571.     update_CRC(info->mc_prediction_on, 1, crc);
  1572.     /* 960627 FdB tca bits dependent on configuration */
  1573.     if ((center == 1 || center == 3) &&
  1574.         (surround == 1 || surround == 2))
  1575.     {
  1576. /* 3 bits for tca's */
  1577. if(info->tc_sbgr_select == 1)
  1578.     update_CRC(info->tc_allocation, 3, crc);
  1579. else
  1580.     for(i = 0; i < 12; i++)
  1581. update_CRC(info->tc_alloc[i], 3, crc);
  1582.     }
  1583.     else if (center == 1 || center == 3 || surround == 1 || surround == 2)
  1584.     {
  1585. /* 2 bits for tca's */
  1586. if(info->tc_sbgr_select == 1)
  1587.     update_CRC(info->tc_allocation, 2, crc);
  1588. else
  1589.     for(i = 0; i < 12; i++)
  1590. update_CRC(info->tc_alloc[i], 2, crc);
  1591.     }
  1592.     if(info->dyn_cross_on == 1)
  1593.     {
  1594.       update_CRC(info->dyn_cross_LR, 1, crc);
  1595. for(i = 0; i < 12; i++)
  1596. {
  1597.     /* 960627 FdB DynX bits dependent on configuration */
  1598.     if((center == 1 || center == 3) && surround == 2)
  1599. /* 3/2 */
  1600. update_CRC(info->dyn_cross[i], 4, crc);
  1601.     else if(((center == 1 || center == 3) && surround == 1) ||
  1602.     (center == 0 && surround == 2))
  1603. /* 3/1 and 2/2 */
  1604. update_CRC(info->dyn_cross[i], 3, crc);
  1605.     else if(center == 1 || center == 3 || surround == 1)
  1606. /* 3/0 (+2/0) and 2/1 */
  1607. update_CRC(info->dyn_cross[i], 1, crc);
  1608.     if(surround == 3)
  1609. update_CRC(info->dyn_second_stereo[i], 1, crc);
  1610. }   
  1611.     }   
  1612.     if (info->mc_prediction_on == 1)
  1613.     {
  1614. for(i = 0; i < 8; i++)
  1615. {
  1616.     update_CRC (info->mc_pred[i], 1, crc);
  1617.     if (info->mc_pred[i] == 1)
  1618.         for (k = 0; k < n_pred_coef[info->dyn_cross[i]]; k ++)
  1619.     update_CRC (info->predsi[i][k], 2, crc);
  1620. }
  1621.     }
  1622.     
  1623.     if (fr_ps->header->lfe == 1)
  1624.         update_CRC (lfe_alloc, (*alloc)[0][0].bits, crc);     
  1625.     
  1626.     for (i = 0; i < sblimit; i++)
  1627.     {
  1628. l = sbgrp[i];
  1629. for (m = fr_ps->stereo; m < fr_ps->stereo + fr_ps->stereomc; m++)
  1630. {        
  1631.     k = transmission_channel (fr_ps, l, m);
  1632.     if ((i < 12) || (k != 2) || (fr_ps->header->center != 3))
  1633.     {
  1634. /* 960627 FdB DynX dependent on configuration */
  1635. if (dyn_ch (fr_ps, l, m) == 1)
  1636.     update_CRC (bit_alloc[k][i], (*alloc)[i][0].bits, crc);
  1637.     }      
  1638. }
  1639.     }
  1640.     for (i = 0; i < sblimit; i++)
  1641.     {
  1642. l = sbgrp[i];
  1643. for (m = fr_ps->stereo; m < fr_ps->stereo + fr_ps->stereomc; m++)
  1644.         {        
  1645.     k = transmission_channel (fr_ps, l, m);
  1646.  
  1647.     if (bit_alloc[k][i] && (i < 12 || m != 2 || center != 3))
  1648. update_CRC (scfsi[k][i], 2, crc);
  1649. }
  1650.     }
  1651. }
  1652. #ifdef Augmentation_7ch
  1653. void II_CRC_calc_aug (frame_params *fr_ps, unsigned int (*bit_alloc)[32], unsigned int (*scfsi)[32], unsigned int *crc)
  1654. {
  1655.     int i, k, m, l;
  1656.     int aug_future_ext = 0;
  1657.     layer *info  = fr_ps->header;
  1658.     int sblimit  = fr_ps->sblimit_mc;
  1659.     al_table *alloc = fr_ps->alloc_mc;
  1660.     
  1661.     *crc = 0xffff; /* changed from '0' 92-08-11 shn */
  1662.     update_CRC (info->aug_mtx_proc, 2, crc);
  1663.     update_CRC (info->aug_dyn_cross_on, 1, crc);
  1664.     update_CRC (aug_future_ext, 1, crc);
  1665.     /* 960627 FdB aug tca bits dependent on configuration */
  1666.     if (info->aug_mtx_proc == 0)
  1667. for (i = 0; i < 12; i++)
  1668.     update_CRC (info->aug_tc_alloc[i], 3, crc);
  1669.     else if (info->aug_mtx_proc == 1)
  1670. for (i = 0; i < 12; i++)
  1671.     update_CRC (info->aug_tc_alloc[i], 2, crc);
  1672.     if (info->aug_dyn_cross_on == 1)
  1673. for (i = 0; i < 12; i++)
  1674.     update_CRC (info->aug_dyn_cross[i], 5, crc);
  1675.     for (i = 0; i < sblimit; i++)
  1676.     {
  1677. l = sbgrp[i];
  1678. for (m = 5; m < 7; ++m)
  1679. {        
  1680.     k = transmission_channel (fr_ps, l, m);
  1681.     if (dyn_ch (fr_ps, l, m) == 1)
  1682. update_CRC (bit_alloc[k][i], (*alloc)[i][0].bits, crc);
  1683. }
  1684.     }
  1685.     for (i = 0; i < sblimit; i++)
  1686.     {
  1687. l = sbgrp[i];
  1688. for (m = 5; m < 7; ++m)
  1689.         {        
  1690.     k = transmission_channel (fr_ps, l, m);
  1691.  
  1692.     if (bit_alloc[k][i])
  1693. update_CRC (scfsi[k][i], 2, crc);
  1694. }
  1695.     }
  1696. }
  1697. #endif
  1698. void II_CRC_calc_ext (frame_params *fr_ps, unsigned int *z, unsigned int *crc)
  1699. {
  1700.     int i;
  1701.     layer *info = fr_ps->header;
  1702.     *crc = 0xffff; 
  1703.     update_CRC (info->ext_length, 11, crc);
  1704.     update_CRC (info->ext_bit, 1, crc);
  1705.     for (i = 0; i < 14; i++)
  1706.     {
  1707. update_CRC (z[i], 8, crc);
  1708.     }
  1709.     update_CRC (z[14], 4, crc);
  1710. }
  1711. void update_CRC (unsigned int data, unsigned int length, unsigned int *crc)
  1712. {
  1713.     unsigned int  masking, carry;
  1714.     masking = 1 << length;
  1715.     while (masking >>= 1)
  1716.     {
  1717. carry = *crc & 0x8000;
  1718. *crc <<= 1;
  1719. if (!carry ^ !(data & masking))
  1720.     *crc ^= CRC16_POLYNOMIAL;
  1721.     }
  1722.     *crc &= 0xffff;
  1723. #ifdef PrintCRCDebug
  1724. printf ("crc_len: %2d code: %4x crc: %4xn", length, data, *crc);
  1725. fflush (stdout);
  1726. #endif
  1727. }
  1728. /*****************************************************************************
  1729. *
  1730. *  End of CRC error protection package
  1731. *
  1732. *****************************************************************************/
  1733. #ifdef  MACINTOSH
  1734. /*****************************************************************************
  1735. *
  1736. *  Set Macintosh file attributes.
  1737. *
  1738. *****************************************************************************/
  1739. void    set_mac_file_attr(fileName, vRefNum, creator, fileType)
  1740. char    fileName[MAX_NAME_SIZE];
  1741. short   vRefNum;
  1742. OsType  creator;
  1743. OsType  fileType;
  1744. {
  1745. short   theFile;
  1746. char    pascal_fileName[MAX_NAME_SIZE];
  1747. FInfo   fndrInfo;
  1748.         CtoPstr(strcpy(pascal_fileName, fileName));
  1749.         FSOpen(pascal_fileName, vRefNum, &theFile);
  1750.         GetFInfo(pascal_fileName, vRefNum, &fndrInfo);
  1751.         fndrInfo.fdCreator = creator;
  1752.         fndrInfo.fdType = fileType;
  1753.         SetFInfo(pascal_fileName, vRefNum, &fndrInfo);
  1754.         FSClose(theFile);
  1755. }
  1756. #endif