bit_allocate.c
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:17k
源码类别:

DVD

开发平台:

Unix_Linux

  1. /* 
  2.  *  bit_allocate.c
  3.  *
  4.  * Copyright (C) Aaron Holtzman - May 1999
  5.  *
  6.  *  This file is part of ac3dec, a free Dolby AC-3 stream decoder.
  7.  *
  8.  *  ac3dec is free software; you can redistribute it and/or modify
  9.  *  it under the terms of the GNU General Public License as published by
  10.  *  the Free Software Foundation; either version 2, or (at your option)
  11.  *  any later version.
  12.  *   
  13.  *  ac3dec is distributed in the hope that it will be useful,
  14.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  *  GNU General Public License for more details.
  17.  *   
  18.  *  You should have received a copy of the GNU General Public License
  19.  *  along with GNU Make; see the file COPYING.  If not, write to
  20.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  21.  *
  22.  */
  23. #include <stdlib.h>
  24. #include <string.h>
  25. #include "ac3.h"
  26. static inline sint_16 logadd(sint_16 a,sint_16  b);
  27. static sint_16 calc_lowcomp(sint_16 a,sint_16 b0,sint_16 b1,sint_16 bin);
  28. static inline uint_16 min(sint_16 a,sint_16 b);
  29. static inline uint_16 max(sint_16 a,sint_16 b);
  30. static void ba_compute_psd(sint_16 start, sint_16 end, sint_16 exps[], 
  31. sint_16 psd[], sint_16 bndpsd[]);
  32. static void ba_compute_excitation(sint_16 start, sint_16 end,sint_16 fgain,
  33. sint_16 fastleak, sint_16 slowleak, sint_16 is_lfe, sint_16 bndpsd[],
  34. sint_16 excite[]);
  35. static void ba_compute_mask(sint_16 start, sint_16 end, uint_16 fscod,
  36. uint_16 deltbae, uint_16 deltnseg, uint_16 deltoffst[], uint_16 deltba[],
  37. uint_16 deltlen[], sint_16 excite[], sint_16 mask[]);
  38. static void ba_compute_bap(sint_16 start, sint_16 end, sint_16 snroffset,
  39. sint_16 psd[], sint_16 mask[], sint_16 bap[]);
  40. /* Misc LUTs for bit allocation process */
  41. static sint_16 slowdec[]  = { 0x0f,  0x11,  0x13,  0x15  };
  42. static sint_16 fastdec[]  = { 0x3f,  0x53,  0x67,  0x7b  };
  43. static sint_16 slowgain[] = { 0x540, 0x4d8, 0x478, 0x410 };
  44. static sint_16 dbpbtab[]  = { 0x000, 0x700, 0x900, 0xb00 };
  45. static uint_16 floortab[] = { 0x2f0, 0x2b0, 0x270, 0x230, 0x1f0, 0x170, 0x0f0, 0xf800 };
  46. static sint_16 fastgain[] = { 0x080, 0x100, 0x180, 0x200, 0x280, 0x300, 0x380, 0x400  };
  47. static sint_16 bndtab[] = {  0,  1,  2,   3,   4,   5,   6,   7,   8,   9, 
  48.                      10, 11, 12,  13,  14,  15,  16,  17,  18,  19,
  49.                      20, 21, 22,  23,  24,  25,  26,  27,  28,  31,
  50.                      34, 37, 40,  43,  46,  49,  55,  61,  67,  73,
  51.                      79, 85, 97, 109, 121, 133, 157, 181, 205, 229 };
  52. static sint_16 bndsz[]  = { 1,  1,  1,  1,  1,  1,  1,  1,  1,  1,
  53.                      1,  1,  1,  1,  1,  1,  1,  1,  1,  1,
  54.                      1,  1,  1,  1,  1,  1,  1,  1,  3,  3,
  55.                      3,  3,  3,  3,  3,  6,  6,  6,  6,  6,
  56.                      6, 12, 12, 12, 12, 24, 24, 24, 24, 24 };
  57. static sint_16 masktab[] = { 0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15,
  58.                      16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 28, 28, 29,
  59.                      29, 29, 30, 30, 30, 31, 31, 31, 32, 32, 32, 33, 33, 33, 34, 34,
  60.                      34, 35, 35, 35, 35, 35, 35, 36, 36, 36, 36, 36, 36, 37, 37, 37,
  61.                      37, 37, 37, 38, 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, 39, 40,
  62.                      40, 40, 40, 40, 40, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
  63.                      41, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 43, 43, 43,
  64.                      43, 43, 43, 43, 43, 43, 43, 43, 43, 44, 44, 44, 44, 44, 44, 44,
  65.                      44, 44, 44, 44, 44, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45,
  66.                      45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 46, 46, 46,
  67.                      46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46,
  68.                      46, 46, 46, 46, 46, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47,
  69.                      47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 48, 48, 48,
  70.                      48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48,
  71.                      48, 48, 48, 48, 48, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
  72.                      49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49,  0,  0,  0 };
  73. static sint_16 latab[] = { 0x0040, 0x003f, 0x003e, 0x003d, 0x003c, 0x003b, 0x003a, 0x0039,
  74.                     0x0038, 0x0037, 0x0036, 0x0035, 0x0034, 0x0034, 0x0033, 0x0032,
  75.                     0x0031, 0x0030, 0x002f, 0x002f, 0x002e, 0x002d, 0x002c, 0x002c,
  76.                     0x002b, 0x002a, 0x0029, 0x0029, 0x0028, 0x0027, 0x0026, 0x0026,
  77.                     0x0025, 0x0024, 0x0024, 0x0023, 0x0023, 0x0022, 0x0021, 0x0021,
  78.                     0x0020, 0x0020, 0x001f, 0x001e, 0x001e, 0x001d, 0x001d, 0x001c,
  79.                     0x001c, 0x001b, 0x001b, 0x001a, 0x001a, 0x0019, 0x0019, 0x0018,
  80.                     0x0018, 0x0017, 0x0017, 0x0016, 0x0016, 0x0015, 0x0015, 0x0015,
  81.                     0x0014, 0x0014, 0x0013, 0x0013, 0x0013, 0x0012, 0x0012, 0x0012,
  82.                     0x0011, 0x0011, 0x0011, 0x0010, 0x0010, 0x0010, 0x000f, 0x000f,
  83.                     0x000f, 0x000e, 0x000e, 0x000e, 0x000d, 0x000d, 0x000d, 0x000d,
  84.                     0x000c, 0x000c, 0x000c, 0x000c, 0x000b, 0x000b, 0x000b, 0x000b,
  85.                     0x000a, 0x000a, 0x000a, 0x000a, 0x000a, 0x0009, 0x0009, 0x0009,
  86.                     0x0009, 0x0009, 0x0008, 0x0008, 0x0008, 0x0008, 0x0008, 0x0008,
  87.                     0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0006, 0x0006,
  88.                     0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0005, 0x0005,
  89.                     0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0004, 0x0004,
  90.                     0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
  91.                     0x0004, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
  92.                     0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0002,
  93.                     0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002,
  94.                     0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002,
  95.                     0x0002, 0x0002, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001,
  96.                     0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001,
  97.                     0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001,
  98.                     0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001,
  99.                     0x0001, 0x0001, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
  100.                     0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
  101.                     0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
  102.                     0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
  103.                     0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
  104.                     0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
  105.                     0x0000, 0x0000, 0x0000, 0x0000};
  106. static sint_16 hth[][50] = {{ 0x04d0, 0x04d0, 0x0440, 0x0400, 0x03e0, 0x03c0, 0x03b0, 0x03b0,  
  107.                       0x03a0, 0x03a0, 0x03a0, 0x03a0, 0x03a0, 0x0390, 0x0390, 0x0390,  
  108.                       0x0380, 0x0380, 0x0370, 0x0370, 0x0360, 0x0360, 0x0350, 0x0350,  
  109.                       0x0340, 0x0340, 0x0330, 0x0320, 0x0310, 0x0300, 0x02f0, 0x02f0,
  110.                       0x02f0, 0x02f0, 0x0300, 0x0310, 0x0340, 0x0390, 0x03e0, 0x0420,
  111.                       0x0460, 0x0490, 0x04a0, 0x0460, 0x0440, 0x0440, 0x0520, 0x0800,
  112.                       0x0840, 0x0840 },
  113.                       
  114.                     { 0x04f0, 0x04f0, 0x0460, 0x0410, 0x03e0, 0x03d0, 0x03c0, 0x03b0, 
  115.                       0x03b0, 0x03a0, 0x03a0, 0x03a0, 0x03a0, 0x03a0, 0x0390, 0x0390, 
  116.                       0x0390, 0x0380, 0x0380, 0x0380, 0x0370, 0x0370, 0x0360, 0x0360, 
  117.                       0x0350, 0x0350, 0x0340, 0x0340, 0x0320, 0x0310, 0x0300, 0x02f0, 
  118.                       0x02f0, 0x02f0, 0x02f0, 0x0300, 0x0320, 0x0350, 0x0390, 0x03e0, 
  119.                       0x0420, 0x0450, 0x04a0, 0x0490, 0x0460, 0x0440, 0x0480, 0x0630, 
  120.                       0x0840, 0x0840 },
  121.                       
  122.                     { 0x0580, 0x0580, 0x04b0, 0x0450, 0x0420, 0x03f0, 0x03e0, 0x03d0, 
  123.                       0x03c0, 0x03b0, 0x03b0, 0x03b0, 0x03a0, 0x03a0, 0x03a0, 0x03a0, 
  124.                       0x03a0, 0x03a0, 0x03a0, 0x03a0, 0x0390, 0x0390, 0x0390, 0x0390, 
  125.                       0x0380, 0x0380, 0x0380, 0x0370, 0x0360, 0x0350, 0x0340, 0x0330, 
  126.                       0x0320, 0x0310, 0x0300, 0x02f0, 0x02f0, 0x02f0, 0x0300, 0x0310, 
  127.                       0x0330, 0x0350, 0x03c0, 0x0410, 0x0470, 0x04a0, 0x0460, 0x0440, 
  128.                       0x0450, 0x04e0 }};
  129. static sint_16 baptab[] = { 0,  1,  1,  1,  1,  1,  2,  2,  3,  3,  3,  4,  4,  5,  5,  6,
  130.                      6,  6,  6,  7,  7,  7,  7,  8,  8,  8,  8,  9,  9,  9,  9, 10, 
  131.                      10, 10, 10, 11, 11, 11, 11, 12, 12, 12, 12, 13, 13, 13, 13, 14,
  132.                      14, 14, 14, 14, 14, 14, 14, 15, 15, 15, 15, 15, 15, 15, 15, 15 };
  133. static sint_16 sdecay;
  134. static sint_16 fdecay;
  135. static sint_16 sgain;
  136. static sint_16 dbknee;
  137. static sint_16 floor;
  138. static sint_16 psd[256];
  139. static sint_16 bndpsd[256];
  140. static sint_16 excite[256];
  141. static sint_16 mask[256];
  142. static inline uint_16
  143. max(sint_16 a,sint_16 b)
  144. {
  145. return (a > b ? a : b);
  146. }
  147. static inline uint_16
  148. min(sint_16 a,sint_16 b)
  149. {
  150. return (a < b ? a : b);
  151. }
  152. static inline sint_16 
  153. logadd(sint_16 a,sint_16  b) 
  154. sint_16 c;
  155. sint_16 address;
  156. c = a - b; 
  157. address = min((abs(c) >> 1), 255); 
  158. if (c >= 0) 
  159. return(a + latab[address]); 
  160. else 
  161. return(b + latab[address]); 
  162. }
  163. void bit_allocate(uint_16 fscod, bsi_t *bsi, audblk_t *audblk)
  164. {
  165. uint_16 i;
  166. sint_16 fgain;
  167. sint_16 snroffset;
  168. sint_16 start;
  169. sint_16 end;
  170. sint_16 fastleak;
  171. sint_16 slowleak;
  172. /* Only perform bit_allocation if the exponents have changed or we
  173.  * have new sideband information */
  174. if (audblk->chexpstr[0]  == 0 && audblk->chexpstr[1] == 0 &&
  175. audblk->chexpstr[2]  == 0 && audblk->chexpstr[3] == 0 &&
  176. audblk->chexpstr[4]  == 0 && audblk->cplexpstr   == 0 &&
  177. audblk->lfeexpstr    == 0 && audblk->baie        == 0 &&
  178. audblk->snroffste    == 0 && audblk->deltbaie    == 0)
  179. return;
  180. /* Do some setup before we do the bit alloc */
  181. sdecay = slowdec[audblk->sdcycod]; 
  182. fdecay = fastdec[audblk->fdcycod];
  183. sgain = slowgain[audblk->sgaincod]; 
  184. dbknee = dbpbtab[audblk->dbpbcod]; 
  185. floor = floortab[audblk->floorcod]; 
  186. /* if all the SNR offset constants are zero then the whole block is zero */
  187. if(!audblk->csnroffst    && !audblk->fsnroffst[0] && 
  188.  !audblk->fsnroffst[1] && !audblk->fsnroffst[2] && 
  189.  !audblk->fsnroffst[3] && !audblk->fsnroffst[4] &&
  190.  !audblk->cplfsnroffst && !audblk->lfefsnroffst)
  191. {
  192. memset(audblk->fbw_bap,0,sizeof(uint_16) * 256 * 5);
  193. memset(audblk->cpl_bap,0,sizeof(uint_16) * 256);
  194. memset(audblk->lfe_bap,0,sizeof(uint_16) * 7);
  195. return;
  196. }
  197.  
  198. for(i = 0; i < bsi->nfchans; i++)
  199. {
  200. start = 0;
  201. end = audblk->endmant[i] ; 
  202. fgain = fastgain[audblk->fgaincod[i]]; 
  203. snroffset = (((audblk->csnroffst - 15) << 4) + audblk->fsnroffst[i]) << 2 ;
  204. fastleak = 0;
  205. slowleak = 0;
  206. ba_compute_psd(start, end, audblk->fbw_exp[i], psd, bndpsd);
  207. ba_compute_excitation(start, end , fgain, fastleak, slowleak, 0, bndpsd, excite);
  208. ba_compute_mask(start, end, fscod, audblk->deltbae[i], audblk->deltnseg[i], 
  209. audblk->deltoffst[i], audblk->deltba[i], audblk->deltlen[i], excite, mask);
  210. ba_compute_bap(start, end, snroffset, psd, mask, audblk->fbw_bap[i]);
  211. }
  212. if(audblk->cplinu)
  213. {
  214. start = audblk->cplstrtmant; 
  215. end = audblk->cplendmant; 
  216. fgain = fastgain[audblk->cplfgaincod];
  217. snroffset = (((audblk->csnroffst - 15) << 4) + audblk->cplfsnroffst) << 2 ;
  218. fastleak = (audblk->cplfleak << 8) + 768; 
  219. slowleak = (audblk->cplsleak << 8) + 768;
  220. ba_compute_psd(start, end, audblk->cpl_exp, psd, bndpsd);
  221. ba_compute_excitation(start, end , fgain, fastleak, slowleak, 0, bndpsd, excite);
  222. ba_compute_mask(start, end, fscod, audblk->cpldeltbae, audblk->cpldeltnseg, 
  223. audblk->cpldeltoffst, audblk->cpldeltba, audblk->cpldeltlen, excite, mask);
  224. ba_compute_bap(start, end, snroffset, psd, mask, audblk->cpl_bap);
  225. }
  226. if(bsi->lfeon)
  227. {
  228. start = 0;
  229. end = 7;
  230. fgain = fastgain[audblk->lfefgaincod];
  231. snroffset = (((audblk->csnroffst - 15) << 4) + audblk->lfefsnroffst) << 2 ;
  232. fastleak = 0;
  233. slowleak = 0;
  234. ba_compute_psd(start, end, audblk->lfe_exp, psd, bndpsd);
  235. ba_compute_excitation(start, end , fgain, fastleak, slowleak, 1, bndpsd, excite);
  236. /* Perform no delta bit allocation for lfe */
  237. ba_compute_mask(start, end, fscod, 2, 0, 0, 0, 0, excite, mask);
  238. ba_compute_bap(start, end, snroffset, psd, mask, audblk->lfe_bap);
  239. }
  240. }
  241. static void ba_compute_psd(sint_16 start, sint_16 end, sint_16 exps[], 
  242. sint_16 psd[], sint_16 bndpsd[])
  243. {
  244. int bin,i,j,k;
  245. sint_16 lastbin = 0;
  246. /* Map the exponents into dBs */
  247. for (bin=start; bin<end; bin++) 
  248. psd[bin] = (3072 - (exps[bin] << 7)); 
  249. }
  250. /* Integrate the psd function over each bit allocation band */
  251. j = start; 
  252. k = masktab[start]; 
  253. do 
  254. lastbin = min(bndtab[k] + bndsz[k], end); 
  255. bndpsd[k] = psd[j]; 
  256. j++; 
  257. for (i = j; i < lastbin; i++) 
  258. bndpsd[k] = logadd(bndpsd[k], psd[j]);
  259. j++; 
  260. k++; 
  261. } while (end > lastbin);
  262. }
  263. static void ba_compute_excitation(sint_16 start, sint_16 end,sint_16 fgain,
  264. sint_16 fastleak, sint_16 slowleak, sint_16 is_lfe, sint_16 bndpsd[],
  265. sint_16 excite[])
  266. {
  267. int bin;
  268. sint_16 bndstrt;
  269. sint_16 bndend;
  270. sint_16 lowcomp = 0;
  271. sint_16 begin = 0;
  272. /* Compute excitation function */
  273. bndstrt = masktab[start]; 
  274. bndend = masktab[end - 1] + 1; 
  275. if (bndstrt == 0) /* For fbw and lfe channels */ 
  276. lowcomp = calc_lowcomp(lowcomp, bndpsd[0], bndpsd[1], 0); 
  277. excite[0] = bndpsd[0] - fgain - lowcomp; 
  278. lowcomp = calc_lowcomp(lowcomp, bndpsd[1], bndpsd[2], 1);
  279. excite[1] = bndpsd[1] - fgain - lowcomp; 
  280. begin = 7 ; 
  281. /* Note: Do not call calc_lowcomp() for the last band of the lfe channel, (bin = 6) */ 
  282. for (bin = 2; bin < 7; bin++) 
  283. if (!(is_lfe && (bin == 6)))
  284. lowcomp = calc_lowcomp(lowcomp, bndpsd[bin], bndpsd[bin+1], bin); 
  285. fastleak = bndpsd[bin] - fgain; 
  286. slowleak = bndpsd[bin] - sgain; 
  287. excite[bin] = fastleak - lowcomp; 
  288. if (!(is_lfe && (bin == 6)))
  289. {
  290. if (bndpsd[bin] <= bndpsd[bin+1]) 
  291. {
  292. begin = bin + 1 ; 
  293. break; 
  294. }
  295. for (bin = begin; bin < min(bndend, 22); bin++) 
  296. if (!(is_lfe && (bin == 6)))
  297. lowcomp = calc_lowcomp(lowcomp, bndpsd[bin], bndpsd[bin+1], bin); 
  298. fastleak -= fdecay ; 
  299. fastleak = max(fastleak, bndpsd[bin] - fgain); 
  300. slowleak -= sdecay ; 
  301. slowleak = max(slowleak, bndpsd[bin] - sgain); 
  302. excite[bin] = max(fastleak - lowcomp, slowleak); 
  303. begin = 22; 
  304. else /* For coupling channel */ 
  305. begin = bndstrt; 
  306. for (bin = begin; bin < bndend; bin++) 
  307. fastleak -= fdecay; 
  308. fastleak = max(fastleak, bndpsd[bin] - fgain); 
  309. slowleak -= sdecay; 
  310. slowleak = max(slowleak, bndpsd[bin] - sgain); 
  311. excite[bin] = max(fastleak, slowleak) ; 
  312. }
  313. static void ba_compute_mask(sint_16 start, sint_16 end, uint_16 fscod,
  314. uint_16 deltbae, uint_16 deltnseg, uint_16 deltoffst[], uint_16 deltba[],
  315. uint_16 deltlen[], sint_16 excite[], sint_16 mask[])
  316. {
  317. int bin,k;
  318. sint_16 bndstrt;
  319. sint_16 bndend;
  320. sint_16 delta;
  321. bndstrt = masktab[start]; 
  322. bndend = masktab[end - 1] + 1; 
  323. /* Compute the masking curve */
  324. for (bin = bndstrt; bin < bndend; bin++) 
  325. if (bndpsd[bin] < dbknee) 
  326. excite[bin] += ((dbknee - bndpsd[bin]) >> 2); 
  327. mask[bin] = max(excite[bin], hth[fscod][bin]);
  328. }
  329. /* Perform delta bit modulation if necessary */
  330. if ((deltbae == 0) || (deltbae == 1)) 
  331. sint_16 band = 0; 
  332. sint_16 seg = 0; 
  333. for (seg = 0; seg < deltnseg+1; seg++) 
  334. band += deltoffst[seg]; 
  335. if (deltba[seg] >= 4) 
  336. delta = (deltba[seg] - 3) << 7;
  337. else 
  338. delta = (deltba[seg] - 4) << 7;
  339. for (k = 0; k < deltlen[seg]; k++) 
  340. mask[band] += delta; 
  341. band++; 
  342. }
  343. }
  344. static void ba_compute_bap(sint_16 start, sint_16 end, sint_16 snroffset,
  345. sint_16 psd[], sint_16 mask[], sint_16 bap[])
  346. {
  347. int i,j,k;
  348. sint_16 lastbin = 0;
  349. sint_16 address = 0;
  350. /* Compute the bit allocation pointer for each bin */
  351. i = start; 
  352. j = masktab[start]; 
  353. do 
  354. lastbin = min(bndtab[j] + bndsz[j], end); 
  355. mask[j] -= snroffset; 
  356. mask[j] -= floor; 
  357. if (mask[j] < 0) 
  358. mask[j] = 0; 
  359. mask[j] &= 0x1fe0;
  360. mask[j] += floor; 
  361. for (k = i; k < lastbin; k++) 
  362. address = (psd[i] - mask[j]) >> 5; 
  363. address = min(63, max(0, address)); 
  364. bap[i] = baptab[address]; 
  365. i++; 
  366. j++; 
  367. } while (end > lastbin);
  368. }
  369. static sint_16 
  370. calc_lowcomp(sint_16 a,sint_16 b0,sint_16 b1,sint_16 bin) 
  371. if (bin < 7) 
  372. if ((b0 + 256) == b1)
  373. a = 384; 
  374.   else if (b0 > b1) 
  375. a = max(0, a - 64); 
  376. else if (bin < 20) 
  377. if ((b0 + 256) == b1) 
  378. a = 320; 
  379. else if (b0 > b1) 
  380. a = max(0, a - 64) ; 
  381. }
  382. else  
  383. a = max(0, a - 128); 
  384. return(a);
  385. }