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

流媒体/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-1 audio decoder 
  15.  * --------------------------
  16.  * copyright (c) 1995 by Michael Hipp, All rights reserved. See also 'README'
  17.  * near unoptimzed ...
  18.  *
  19.  * may have a few bugs after last optimization ... 
  20.  *
  21.  */
  22. #include "mpg123.h"
  23. /**
  24.  *
  25.  **/
  26. static void I_step_one (unsigned int balloc[], unsigned int scale_index[2][SBLIMIT],struct frame *fr)
  27. {
  28. unsigned int *ba=balloc;
  29. unsigned int *sca = (unsigned int *) scale_index;
  30. if(fr->stereo) {
  31. int i;
  32. int jsbound = fr->jsbound;
  33. for (i=0;i<jsbound;i++) { 
  34. *ba++ = getbits(4);
  35. *ba++ = getbits(4);
  36. }
  37. for (i=jsbound;i<SBLIMIT;i++)
  38. *ba++ = getbits(4);
  39. ba = balloc;
  40. for (i=0;i<jsbound;i++) {
  41. if ((*ba++))
  42. *sca++ = getbits(6);
  43. if ((*ba++))
  44. *sca++ = getbits(6);
  45. }
  46. for (i=jsbound;i<SBLIMIT;i++) {
  47. if ((*ba++)) {
  48. *sca++ =  getbits(6);
  49. *sca++ =  getbits(6);
  50. }
  51. }
  52. } else { // mono
  53. int i;
  54. for (i=0;i<SBLIMIT;i++)
  55. *ba++ = getbits(4);
  56. ba = balloc;
  57. for (i=0;i<SBLIMIT;i++) {
  58. if ((*ba++))
  59. *sca++ = getbits(6);
  60. }
  61. }
  62. }
  63. /**
  64.  *
  65.  **/
  66. static void I_step_two (real fraction[2][SBLIMIT],unsigned int balloc[2*SBLIMIT],
  67. unsigned int scale_index[2][SBLIMIT],struct frame *fr)
  68. {
  69. int i,n;
  70. int smpb[2*SBLIMIT]; /* values: 0-65535 */
  71. int *sample;
  72. register unsigned int *ba;
  73. register unsigned int *sca = (unsigned int *) scale_index;
  74. if(fr->stereo) {
  75. int jsbound = fr->jsbound;
  76. register real *f0 = fraction[0];
  77. register real *f1 = fraction[1];
  78. ba = balloc;
  79. for (sample=smpb,i=0;i<jsbound;i++)  {
  80. if ((n = *ba++))
  81. *sample++ = getbits(n+1);
  82. if ((n = *ba++))
  83. *sample++ = getbits(n+1);
  84. }
  85. for (i=jsbound;i<SBLIMIT;i++) {
  86. if ((n = *ba++))
  87. *sample++ = getbits(n+1);
  88. }
  89. ba = balloc;
  90. for (sample=smpb,i=0;i<jsbound;i++) {
  91. if((n=*ba++))
  92. *f0++ = (real) ( ((-1)<<n) + (*sample++) + 1) * muls[n+1][*sca++];
  93. else
  94. *f0++ = 0.0;
  95. if((n=*ba++))
  96. *f1++ = (real) ( ((-1)<<n) + (*sample++) + 1) * muls[n+1][*sca++];
  97. else
  98. *f1++ = 0.0;
  99. }
  100. for (i=jsbound;i<SBLIMIT;i++) {
  101. if ((n=*ba++)) {
  102. real samp = ( ((-1)<<n) + (*sample++) + 1);
  103. *f0++ = samp * muls[n+1][*sca++];
  104. *f1++ = samp * muls[n+1][*sca++];
  105. } else
  106. *f0++ = *f1++ = 0.0;
  107. }
  108. } else { // mono
  109. register real *f0 = fraction[0];
  110. ba = balloc;
  111. for (sample=smpb,i=0;i<SBLIMIT;i++) {
  112. if ((n = *ba++))
  113. *sample++ = getbits(n+1);
  114. }
  115. ba = balloc;
  116. for (sample=smpb,i=0;i<SBLIMIT;i++) {
  117. if((n=*ba++))
  118. *f0++ = (real) ( ((-1)<<n) + (*sample++) + 1) * muls[n+1][*sca++];
  119. else
  120. *f0++ = 0.0;
  121. }
  122. }
  123. }
  124. /**
  125.  *
  126.  **/
  127. int do_layer1(struct frame *fr,unsigned char *pcm_sample,int *pcm_point)
  128. {
  129. int clip=0;
  130. int i,stereo = fr->stereo;
  131. unsigned int balloc[2*SBLIMIT];
  132. unsigned int scale_index[2][SBLIMIT];
  133. real fraction[2][SBLIMIT];
  134. int single = fr->single;
  135. fr->jsbound = (fr->mode == MPG_MD_JOINT_STEREO) ? (fr->mode_ext<<2)+4 : 32;
  136. if(stereo == 1 || single == 3)
  137. single = 0;
  138. I_step_one (balloc,scale_index,fr);
  139. for (i=0;i<SCALE_BLOCK;i++) {
  140. I_step_two (fraction,balloc,scale_index,fr);
  141. if(single >= 0) {
  142.         clip += synth_1to1_mono( (real*)fraction[single],pcm_sample,pcm_point);
  143.       } else {
  144.         int p1 = *pcm_point;
  145.         clip += synth_1to1( (real*)fraction[0],0,pcm_sample,&p1);
  146.         clip += synth_1to1( (real*)fraction[1],1,pcm_sample,pcm_point);
  147.       }
  148.   }
  149.   return clip;
  150. }