Layer2.cpp
上传用户:lusi_8715
上传日期:2007-01-08
资源大小:199k
文件大小:9k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /**************************************************************************************
  2.  *                                                                                    *
  3.  * This application contains code from OpenDivX and is released as a "Larger Work"    *
  4.  * under that license. Consistant with that license, this application is released     *
  5.  * under the GNU General Public License.                                              *
  6.  *                                                                                    *
  7.  * The OpenDivX license can be found at: http://www.projectmayo.com/opendivx/docs.php *
  8.  * The GPL can be found at: http://www.gnu.org/copyleft/gpl.html                      *
  9.  *                                                                                    *
  10.  * Authors: Damien Chavarria <roy204 at projectmayo.com>                              *
  11.  *                                                                                    *
  12.  **************************************************************************************/
  13. /* 
  14.  * Mpeg Layer-2 audio decoder 
  15.  * --------------------------
  16.  * copyright (c) 1995 by Michael Hipp, All rights reserved. See also 'README'
  17.  *
  18.  */
  19. #include "mpg123.h"
  20. #include "l2tables.h"
  21. static int grp_3tab[32 * 3] = { 0, };   /* used: 27 */
  22. static int grp_5tab[128 * 3] = { 0, };  /* used: 125 */
  23. static int grp_9tab[1024 * 3] = { 0, }; /* used: 729 */
  24. real muls[27][64]; /* also used by layer 1 */
  25. /**
  26.  *
  27.  **/
  28. void init_layer2(void)
  29. {
  30. static double mulmul[27] = {
  31. 0.0 , -2.0/3.0 , 2.0/3.0 ,
  32. 2.0/7.0 , 2.0/15.0 , 2.0/31.0, 2.0/63.0 , 2.0/127.0 , 2.0/255.0 ,
  33. 2.0/511.0 , 2.0/1023.0 , 2.0/2047.0 , 2.0/4095.0 , 2.0/8191.0 ,
  34. 2.0/16383.0 , 2.0/32767.0 , 2.0/65535.0 ,
  35. -4.0/5.0 , -2.0/5.0 , 2.0/5.0, 4.0/5.0 ,
  36. -8.0/9.0 , -4.0/9.0 , -2.0/9.0 , 2.0/9.0 , 4.0/9.0 , 8.0/9.0 };
  37. static int base[3][9] = {
  38. { 1 , 0, 2 , } ,
  39. { 17, 18, 0 , 19, 20 , } ,
  40. { 21, 1, 22, 23, 0, 24, 25, 2, 26 } };
  41. int i,j,k,l,len;
  42. real *table;
  43. static int tablen[3] = { 3 , 5 , 9 };
  44. static int *itable,*tables[3] = { grp_3tab , grp_5tab , grp_9tab };
  45. for(i=0;i<3;i++) {
  46. itable = tables[i];
  47. len = tablen[i];
  48. for(j=0;j<len;j++) {
  49. for(k=0;k<len;k++) {
  50. for(l=0;l<len;l++) {
  51. *itable++ = base[i][l];
  52. *itable++ = base[i][k];
  53. *itable++ = base[i][j];
  54. }
  55. }
  56. }
  57. }
  58. for(k=0;k<27;k++) {
  59. double m=mulmul[k];
  60. table = muls[k];
  61. for(j=3,i=0;i<63;i++,j--)
  62. *table++ = m * pow(2.0,(double) j / 3.0);
  63. *table++ = 0.0;
  64. }
  65. }
  66. /**
  67.  *
  68.  **/
  69. static void II_step_one (unsigned int *bit_alloc,int *scale,struct frame *fr)
  70. {
  71. int stereo = fr->stereo-1;
  72. int sblimit = fr->II_sblimit;
  73. int jsbound = fr->jsbound;
  74. int sblimit2 = fr->II_sblimit<<stereo;
  75. struct al_table *alloc1 = (struct al_table *) fr->alloc;
  76. int i;
  77. static unsigned int scfsi_buf[64];
  78. unsigned int *scfsi,*bita;
  79. int sc,step;
  80. bita = bit_alloc;
  81. if (stereo) {
  82. for (i=jsbound;i;i--,alloc1+=(1<<step)) {
  83. *bita++ = (char) getbits(step=alloc1->bits);
  84. *bita++ = (char) getbits(step);
  85. }
  86. for (i=sblimit-jsbound;i;i--,alloc1+=(1<<step)) {
  87. bita[0] = (char) getbits(step=alloc1->bits);
  88. bita[1] = bita[0];
  89. bita+=2;
  90. }
  91. bita = bit_alloc;
  92. scfsi=scfsi_buf;
  93. for (i=sblimit2;i;i--)
  94. if (*bita++)
  95. *scfsi++ = (char) getbits_fast(2);
  96. } else { /* mono */
  97. for (i=sblimit;i;i--,alloc1+=(1<<step))
  98. *bita++ = (char) getbits(step=alloc1->bits);
  99. bita = bit_alloc;
  100. scfsi=scfsi_buf;
  101. for (i=sblimit;i;i--)
  102. if (*bita++)
  103. *scfsi++ = (char) getbits_fast(2);
  104. }
  105. bita = bit_alloc;
  106. scfsi=scfsi_buf;
  107. for (i=sblimit2;i;i--) {
  108. if (*bita++) {
  109. switch (*scfsi++) {
  110. case 0: 
  111. *scale++ = getbits_fast(6);
  112. *scale++ = getbits_fast(6);
  113. *scale++ = getbits_fast(6);
  114. break;
  115. case 1 : 
  116. *scale++ = sc = getbits_fast(6);
  117. *scale++ = sc;
  118. *scale++ = getbits_fast(6);
  119. break;
  120. case 2: 
  121. *scale++ = sc = getbits_fast(6);
  122. *scale++ = sc;
  123. *scale++ = sc;
  124. break;
  125. case 3:
  126.            default:
  127. *scale++ = getbits_fast(6);
  128. *scale++ = sc = getbits_fast(6);
  129. *scale++ = sc;
  130. break;
  131. }
  132. }
  133.         }
  134. }
  135. /**
  136.  *
  137.  **/
  138. static void II_step_two (unsigned int *bit_alloc,real fraction[2][4][SBLIMIT],int *scale,struct frame *fr,int x1)
  139. {
  140. int i,j,k,ba;
  141. int stereo = fr->stereo;
  142. int sblimit = fr->II_sblimit;
  143. int jsbound = fr->jsbound;
  144. struct al_table *alloc2,*alloc1 = (struct al_table *) fr->alloc;
  145. unsigned int *bita=bit_alloc;
  146. int d1,step;
  147. for (i=0;i<jsbound;i++,alloc1+=(1<<step)) {
  148. step = alloc1->bits;
  149. for (j=0;j<stereo;j++) {
  150. if ((ba=*bita++)) {
  151. k=(alloc2 = alloc1+ba)->bits;
  152. if( (d1=alloc2->d) < 0) {
  153. real cm=muls[k][scale[x1]];
  154. fraction[j][0][i] = ((real) ((int)getbits(k) + d1)) * cm;
  155. fraction[j][1][i] = ((real) ((int)getbits(k) + d1)) * cm;
  156. fraction[j][2][i] = ((real) ((int)getbits(k) + d1)) * cm;
  157. } else {
  158. static int *table[] = { 0,0,0,grp_3tab,0,grp_5tab,0,0,0,grp_9tab };
  159. unsigned int idx,*tab,m=scale[x1];
  160. idx = (unsigned int) getbits(k);
  161. tab = (unsigned int *) (table[d1] + idx + idx + idx);
  162. fraction[j][0][i] = muls[*tab++][m];
  163. fraction[j][1][i] = muls[*tab++][m];
  164. fraction[j][2][i] = muls[*tab][m];  
  165. }
  166. scale+=3;
  167. } else
  168. fraction[j][0][i] = fraction[j][1][i] = fraction[j][2][i] = 0.0;
  169. }
  170. }
  171. for (i=jsbound;i<sblimit;i++,alloc1+=(1<<step)) {
  172. step = alloc1->bits;
  173. bita++; /* channel 1 and channel 2 bitalloc are the same */
  174. if ((ba=*bita++)) {
  175. k=(alloc2 = alloc1+ba)->bits;
  176. if( (d1=alloc2->d) < 0) {
  177. real cm;
  178. cm=muls[k][scale[x1+3]];
  179. fraction[1][0][i] = (fraction[0][0][i] = (real) ((int)getbits(k) + d1) ) * cm;
  180. fraction[1][1][i] = (fraction[0][1][i] = (real) ((int)getbits(k) + d1) ) * cm;
  181. fraction[1][2][i] = (fraction[0][2][i] = (real) ((int)getbits(k) + d1) ) * cm;
  182. cm=muls[k][scale[x1]];
  183. fraction[0][0][i] *= cm; fraction[0][1][i] *= cm; fraction[0][2][i] *= cm;
  184. } else {
  185. static int *table[] = { 0,0,0,grp_3tab,0,grp_5tab,0,0,0,grp_9tab };
  186. unsigned int idx,*tab,m1,m2;
  187. m1 = scale[x1]; m2 = scale[x1+3];
  188. idx = (unsigned int) getbits(k);
  189. tab = (unsigned int *) (table[d1] + idx + idx + idx);
  190. fraction[0][0][i] = muls[*tab][m1]; fraction[1][0][i] = muls[*tab++][m2];
  191. fraction[0][1][i] = muls[*tab][m1]; fraction[1][1][i] = muls[*tab++][m2];
  192. fraction[0][2][i] = muls[*tab][m1]; fraction[1][2][i] = muls[*tab][m2];
  193. }
  194. scale+=6;
  195. } else
  196. fraction[0][0][i] = fraction[0][1][i] = fraction[0][2][i] = fraction[1][0][i] = fraction[1][1][i] = fraction[1][2][i] = 0.0;
  197. /* 
  198.    should we use individual scalefac for channel 2 or
  199.    is the current way the right one , where we just copy channel 1 to
  200.    channel 2 ?? 
  201.    The current 'strange' thing is, that we throw away the scalefac
  202.    values for the second channel ...!!
  203. -> changed .. now we use the scalefac values of channel one !! 
  204. */
  205. }
  206. for(i=sblimit;i<SBLIMIT;i++)
  207. for (j=0;j<stereo;j++)
  208. fraction[j][0][i] = fraction[j][1][i] = fraction[j][2][i] = 0.0;
  209. }
  210. /**
  211.  *
  212.  **/
  213. static void II_select_table(struct frame *fr)
  214. {
  215. static int translate[3][2][16] =
  216.    { { { 0,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0 } ,
  217.        { 0,2,2,0,0,0,1,1,1,1,1,1,1,1,1,0 } } ,
  218.      { { 0,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0 } ,
  219.        { 0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0 } } ,
  220.      { { 0,3,3,3,3,3,3,0,0,0,1,1,1,1,1,0 } ,
  221.        { 0,3,3,0,0,0,1,1,1,1,1,1,1,1,1,0 } } };
  222. int table,sblim;
  223. static struct al_table *tables[5] =
  224. { alloc_0, alloc_1, alloc_2, alloc_3 , alloc_4 };
  225. static int sblims[5] = { 27 , 30 , 8, 12 , 30 };
  226. if(fr->lsf)
  227. table = 4;
  228. else
  229. table = translate[fr->sampling_frequency][2-fr->stereo][fr->bitrate_index];
  230. sblim = sblims[table];
  231. fr->alloc      = tables[table];
  232. fr->II_sblimit = sblim;
  233. }
  234. /**
  235.  *
  236.  **/
  237. int do_layer2 (struct frame *fr,unsigned char *pcm_sample,int *pcm_point)
  238. {
  239. int clip=0;
  240. int i,j;
  241. int stereo = fr->stereo;
  242. real fraction[2][4][SBLIMIT]; /* pick_table clears unused subbands */
  243. unsigned int bit_alloc[64];
  244. int scale[192];
  245. int single = fr->single;
  246. II_select_table(fr);
  247. fr->jsbound = (fr->mode == MPG_MD_JOINT_STEREO) ?
  248.       (fr->mode_ext<<2)+4 : fr->II_sblimit;
  249. if(stereo == 1 || single == 3)
  250.      single = 0;
  251. II_step_one(bit_alloc, scale, fr);
  252. if(single >= 0) {
  253. for (i=0;i<SCALE_BLOCK;i++) {
  254.      II_step_two(bit_alloc,fraction,scale,fr,i>>2);
  255. for (j=0;j<3;j++)
  256. clip += synth_1to1_mono(fraction[0][j],pcm_sample,pcm_point);
  257. }
  258. } else {
  259. for (i=0;i<SCALE_BLOCK;i++) {
  260.      II_step_two(bit_alloc,fraction,scale,fr,i>>2);
  261. for (j=0;j<3;j++) {
  262. int p1 = *pcm_point;
  263. clip += synth_1to1(fraction[0][j],0,pcm_sample,&p1);
  264. clip += synth_1to1(fraction[1][j],1,pcm_sample,pcm_point);
  265. }
  266. }
  267. }
  268. return clip;
  269. }