mwav.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:5k
源码类别:

Windows CE

开发平台:

C/C++

  1. /* MikMod sound library
  2. (c) 1998, 1999, 2000, 2001 Miodrag Vallat and others - see file AUTHORS
  3. for complete list.
  4. This library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Library General Public License as
  6. published by the Free Software Foundation; either version 2 of
  7. the License, or (at your option) any later version.
  8.  
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. GNU Library General Public License for more details.
  13.  
  14. You should have received a copy of the GNU Library General Public
  15. License along with this library; if not, write to the Free Software
  16. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  17. 02111-1307, USA.
  18. */
  19. /*==============================================================================
  20.   $Id: mwav.c,v 1.1.1.1 2004/01/21 01:36:35 raph Exp $
  21.   WAV sample loader
  22. ==============================================================================*/
  23. /*
  24.    FIXME: Stereo .WAV files are not yet supported as samples.
  25. */
  26. #ifdef HAVE_CONFIG_H
  27. #include "config.h"
  28. #endif
  29. #ifdef HAVE_UNISTD_H
  30. #include <unistd.h>
  31. #endif
  32. #include <string.h>
  33. #include "mikmod_internals.h"
  34. #ifdef SUNOS
  35. extern int fprintf(FILE *, const char *, ...);
  36. #endif
  37. typedef struct WAV {
  38. CHAR  rID[4];
  39. ULONG rLen;
  40. CHAR  wID[4];
  41. CHAR  fID[4];
  42. ULONG fLen;
  43. UWORD wFormatTag;
  44. UWORD nChannels;
  45. ULONG nSamplesPerSec;
  46. ULONG nAvgBytesPerSec;
  47. UWORD nBlockAlign;
  48. UWORD nFormatSpecific;
  49. } WAV;
  50. SAMPLE* Sample_LoadGeneric_internal(MREADER* reader)
  51. {
  52. SAMPLE *si=NULL;
  53. WAV wh;
  54. BOOL have_fmt=0;
  55. /* read wav header */
  56. _mm_read_string(wh.rID,4,reader);
  57. wh.rLen = _mm_read_I_ULONG(reader);
  58. _mm_read_string(wh.wID,4,reader);
  59. /* check for correct header */
  60. if(_mm_eof(reader)|| memcmp(wh.rID,"RIFF",4) || memcmp(wh.wID,"WAVE",4)) {
  61. _mm_errno = MMERR_UNKNOWN_WAVE_TYPE;
  62. return NULL;
  63. }
  64. /* scan all RIFF blocks until we find the sample data */
  65. for(;;) {
  66. CHAR dID[4];
  67. ULONG len,start;
  68. _mm_read_string(dID,4,reader);
  69. len = _mm_read_I_ULONG(reader);
  70. /* truncated file ? */
  71. if (_mm_eof(reader)) {
  72. _mm_errno=MMERR_UNKNOWN_WAVE_TYPE;
  73. return NULL;
  74. }
  75. start = _mm_ftell(reader);
  76. /* sample format block
  77.    should be present only once and before a data block */
  78. if(!memcmp(dID,"fmt ",4)) {
  79. wh.wFormatTag      = _mm_read_I_UWORD(reader);
  80. wh.nChannels       = _mm_read_I_UWORD(reader);
  81. wh.nSamplesPerSec  = _mm_read_I_ULONG(reader);
  82. wh.nAvgBytesPerSec = _mm_read_I_ULONG(reader);
  83. wh.nBlockAlign     = _mm_read_I_UWORD(reader);
  84. wh.nFormatSpecific = _mm_read_I_UWORD(reader);
  85. #ifdef MIKMOD_DEBUG
  86. fprintf(stderr,"rwavloader : wFormatTag=%04x blockalign=%04x nFormatSpc=%04xn",
  87.         wh.wFormatTag,wh.nBlockAlign,wh.nFormatSpecific);
  88. #endif
  89. if((have_fmt)||(wh.nChannels>1)) {
  90. _mm_errno=MMERR_UNKNOWN_WAVE_TYPE;
  91. return NULL;
  92. }
  93. have_fmt=1;
  94. } else
  95. /* sample data block
  96.    should be present only once and after a format block */
  97.   if(!memcmp(dID,"data",4)) {
  98. if(!have_fmt) {
  99. _mm_errno=MMERR_UNKNOWN_WAVE_TYPE;
  100. return NULL;
  101. }
  102. if(!(si=(SAMPLE*)_mm_malloc(sizeof(SAMPLE)))) return NULL;
  103. si->speed  = wh.nSamplesPerSec/wh.nChannels;
  104. si->volume = 64;
  105. si->length = len;
  106. if(wh.nBlockAlign == 2) {
  107. si->flags    = SF_16BITS | SF_SIGNED;
  108. si->length >>= 1;
  109. }
  110. si->inflags = si->flags;
  111. SL_RegisterSample(si,MD_SNDFX,reader);
  112. SL_LoadSamples();
  113. /* skip any other remaining blocks - so in case of repeated sample
  114.    fragments, we'll return the first anyway instead of an error */
  115. break;
  116. }
  117. /* onto next block */
  118. _mm_fseek(reader,start+len,SEEK_SET);
  119. if (_mm_eof(reader))
  120. break;
  121. }
  122. return si;
  123. }
  124. MIKMODAPI SAMPLE* Sample_LoadGeneric(MREADER* reader)
  125. {
  126. SAMPLE* result;
  127. MUTEX_LOCK(vars);
  128. result=Sample_LoadGeneric_internal(reader);
  129. MUTEX_UNLOCK(vars);
  130. return result;
  131. }
  132. MIKMODAPI SAMPLE* Sample_LoadFP(FILE *fp)
  133. {
  134. SAMPLE* result=NULL;
  135. MREADER* reader;
  136. if((reader=_mm_new_file_reader(fp))) {
  137. result=Sample_LoadGeneric(reader);
  138. _mm_delete_file_reader(reader);
  139. }
  140. return result;
  141. }
  142. MIKMODAPI SAMPLE* Sample_Load(CHAR* filename)
  143. {
  144. FILE *fp;
  145. SAMPLE *si=NULL;
  146. if(!(md_mode & DMODE_SOFT_SNDFX)) return NULL;
  147. if((fp=_mm_fopen(filename,"rb"))) {
  148. si = Sample_LoadFP(fp);
  149. _mm_fclose(fp);
  150. }
  151. return si;
  152. }
  153. MIKMODAPI void Sample_Free(SAMPLE* si)
  154. {
  155. if(si) {
  156. MD_SampleUnload(si->handle);
  157. free(si);
  158. }
  159. }
  160. void Sample_Free_internal(SAMPLE *si)
  161. {
  162. MUTEX_LOCK(vars);
  163. Sample_Free(si);
  164. MUTEX_UNLOCK(vars);
  165. }
  166. /* ex:set ts=4: */