Newer
Older
monitord / lame-3.97 / mpglib / .svn / text-base / decode_i386.c.svn-base
  1. /*
  2. * Mpeg Layer-1,2,3 audio decoder
  3. * ------------------------------
  4. * copyright (c) 1995,1996,1997 by Michael Hipp, All rights reserved.
  5. * modified by Aleksander Korzynski (Olcios) '2003
  6. * See also 'README'
  7. *
  8. * slighlty optimized for machines without autoincrement/decrement.
  9. * The performance is highly compiler dependend. Maybe
  10. * the decode.c version for 'normal' processor may be faster
  11. * even for Intel processors.
  12. */
  13.  
  14. /* $Id: decode_i386.c,v 1.17 2004/04/14 22:15:44 robert Exp $ */
  15.  
  16. #ifdef HAVE_CONFIG_H
  17. #include <config.h>
  18. #endif
  19.  
  20. #ifdef STDC_HEADERS
  21. # include <stdlib.h>
  22. # include <string.h>
  23. #else
  24. # ifndef HAVE_STRCHR
  25. # define strchr index
  26. # define strrchr rindex
  27. # endif
  28. char *strchr (), *strrchr ();
  29. # ifndef HAVE_MEMCPY
  30. # define memcpy(d, s, n) bcopy ((s), (d), (n))
  31. # define memmove(d, s, n) bcopy ((s), (d), (n))
  32. # endif
  33. #endif
  34.  
  35. #if defined(__riscos__) && defined(FPA10)
  36. #include "ymath.h"
  37. #else
  38. #include <math.h>
  39. #endif
  40.  
  41. #include "decode_i386.h"
  42. #include "dct64_i386.h"
  43. #include "tabinit.h"
  44.  
  45. #ifdef WITH_DMALLOC
  46. #include <dmalloc.h>
  47. #endif
  48.  
  49.  
  50. /* old WRITE_SAMPLE_CLIPPED */
  51. #define WRITE_SAMPLE_CLIPPED(samples,sum,clip) \
  52. if( (sum) > 32767.0) { *(samples) = 0x7fff; (clip)++; } \
  53. else if( (sum) < -32768.0) { *(samples) = -0x8000; (clip)++; } \
  54. else { *(samples) = ((sum)>0 ? (sum)+0.5 : (sum)-0.5) ; }
  55.  
  56. #define WRITE_SAMPLE_UNCLIPPED(samples,sum,clip) \
  57. *samples = sum;
  58.  
  59.  
  60. /* versions: clipped (when TYPE == short) and unclipped (when TYPE == real) of synth_1to1_mono* functions */
  61. #define SYNTH_1TO1_MONO_CLIPCHOICE(TYPE,SYNTH_1TO1) \
  62. TYPE samples_tmp[64]; \
  63. TYPE *tmp1 = samples_tmp; \
  64. int i,ret; \
  65. int pnt1 = 0; \
  66. \
  67. ret = SYNTH_1TO1 (mp,bandPtr,0,(unsigned char *) samples_tmp,&pnt1); \
  68. out += *pnt; \
  69. \
  70. for(i=0;i<32;i++) { \
  71. *( (TYPE *) out) = *tmp1; \
  72. out += sizeof(TYPE); \
  73. tmp1 += 2; \
  74. } \
  75. *pnt += 32*sizeof(TYPE); \
  76. \
  77. return ret;
  78.  
  79.  
  80. int synth_1to1_mono(PMPSTR mp, real *bandPtr,unsigned char *out,int *pnt)
  81. {
  82. SYNTH_1TO1_MONO_CLIPCHOICE(short,synth_1to1)
  83. }
  84.  
  85. int synth_1to1_mono_unclipped(PMPSTR mp, real *bandPtr, unsigned char *out,int *pnt)
  86. {
  87. SYNTH_1TO1_MONO_CLIPCHOICE(real,synth_1to1_unclipped)
  88. }
  89.  
  90. /* versions: clipped (when TYPE == short) and unclipped (when TYPE == real) of synth_1to1* functions */
  91. #define SYNTH_1TO1_CLIPCHOICE(TYPE,WRITE_SAMPLE) \
  92. static const int step = 2; \
  93. int bo; \
  94. TYPE *samples = (TYPE *) (out + *pnt); \
  95. \
  96. real *b0,(*buf)[0x110]; \
  97. int clip = 0; \
  98. int bo1; \
  99. \
  100. bo = mp->synth_bo; \
  101. \
  102. if(!channel) { \
  103. bo--; \
  104. bo &= 0xf; \
  105. buf = mp->synth_buffs[0]; \
  106. } \
  107. else { \
  108. samples++; \
  109. buf = mp->synth_buffs[1]; \
  110. } \
  111. \
  112. if(bo & 0x1) { \
  113. b0 = buf[0]; \
  114. bo1 = bo; \
  115. dct64(buf[1]+((bo+1)&0xf),buf[0]+bo,bandPtr); \
  116. } \
  117. else { \
  118. b0 = buf[1]; \
  119. bo1 = bo+1; \
  120. dct64(buf[0]+bo,buf[1]+bo+1,bandPtr); \
  121. } \
  122. \
  123. mp->synth_bo = bo; \
  124. \
  125. { \
  126. int j; \
  127. real *window = decwin + 16 - bo1; \
  128. \
  129. for (j=16;j;j--,b0+=0x10,window+=0x20,samples+=step) \
  130. { \
  131. real sum; \
  132. sum = window[0x0] * b0[0x0]; \
  133. sum -= window[0x1] * b0[0x1]; \
  134. sum += window[0x2] * b0[0x2]; \
  135. sum -= window[0x3] * b0[0x3]; \
  136. sum += window[0x4] * b0[0x4]; \
  137. sum -= window[0x5] * b0[0x5]; \
  138. sum += window[0x6] * b0[0x6]; \
  139. sum -= window[0x7] * b0[0x7]; \
  140. sum += window[0x8] * b0[0x8]; \
  141. sum -= window[0x9] * b0[0x9]; \
  142. sum += window[0xA] * b0[0xA]; \
  143. sum -= window[0xB] * b0[0xB]; \
  144. sum += window[0xC] * b0[0xC]; \
  145. sum -= window[0xD] * b0[0xD]; \
  146. sum += window[0xE] * b0[0xE]; \
  147. sum -= window[0xF] * b0[0xF]; \
  148. \
  149. WRITE_SAMPLE (samples,sum,clip); \
  150. } \
  151. \
  152. { \
  153. real sum; \
  154. sum = window[0x0] * b0[0x0]; \
  155. sum += window[0x2] * b0[0x2]; \
  156. sum += window[0x4] * b0[0x4]; \
  157. sum += window[0x6] * b0[0x6]; \
  158. sum += window[0x8] * b0[0x8]; \
  159. sum += window[0xA] * b0[0xA]; \
  160. sum += window[0xC] * b0[0xC]; \
  161. sum += window[0xE] * b0[0xE]; \
  162. WRITE_SAMPLE (samples,sum,clip); \
  163. b0-=0x10,window-=0x20,samples+=step; \
  164. } \
  165. window += bo1<<1; \
  166. \
  167. for (j=15;j;j--,b0-=0x10,window-=0x20,samples+=step) \
  168. { \
  169. real sum; \
  170. sum = -window[-0x1] * b0[0x0]; \
  171. sum -= window[-0x2] * b0[0x1]; \
  172. sum -= window[-0x3] * b0[0x2]; \
  173. sum -= window[-0x4] * b0[0x3]; \
  174. sum -= window[-0x5] * b0[0x4]; \
  175. sum -= window[-0x6] * b0[0x5]; \
  176. sum -= window[-0x7] * b0[0x6]; \
  177. sum -= window[-0x8] * b0[0x7]; \
  178. sum -= window[-0x9] * b0[0x8]; \
  179. sum -= window[-0xA] * b0[0x9]; \
  180. sum -= window[-0xB] * b0[0xA]; \
  181. sum -= window[-0xC] * b0[0xB]; \
  182. sum -= window[-0xD] * b0[0xC]; \
  183. sum -= window[-0xE] * b0[0xD]; \
  184. sum -= window[-0xF] * b0[0xE]; \
  185. sum -= window[-0x0] * b0[0xF]; \
  186. \
  187. WRITE_SAMPLE (samples,sum,clip); \
  188. } \
  189. } \
  190. *pnt += 64*sizeof(TYPE); \
  191. \
  192. return clip;
  193.  
  194.  
  195. int synth_1to1(PMPSTR mp, real *bandPtr,int channel,unsigned char *out, int *pnt)
  196. {
  197. SYNTH_1TO1_CLIPCHOICE(short,WRITE_SAMPLE_CLIPPED)
  198. }
  199.  
  200. int synth_1to1_unclipped(PMPSTR mp, real *bandPtr,int channel, unsigned char *out, int *pnt)
  201. {
  202. SYNTH_1TO1_CLIPCHOICE(real,WRITE_SAMPLE_UNCLIPPED)
  203. }
  204.  
  205.