Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: Portable_Surface_Transducer_Jukebox
wave_player.cpp
00001 //----------------------------------------------------------------------------- 00002 // a sample mbed library to play back wave files. 00003 // 00004 // explanation of wave file format. 00005 // https://ccrma.stanford.edu/courses/422/projects/WaveFormat/ 00006 00007 // if VERBOSE is uncommented then the wave player will enter a verbose 00008 // mode that displays all data values as it reads them from the file 00009 // and writes them to the DAC. Very slow and unusable output on the DAC, 00010 // but useful for debugging wave files that don't work. 00011 //#define VERBOSE 00012 00013 00014 #include <mbed.h> 00015 #include <stdio.h> 00016 #include <wave_player.h> 00017 #include <stdlib.h> 00018 00019 //----------------------------------------------------------------------------- 00020 // constructor -- accepts an mbed pin to use for AnalogOut. Only p18 will work 00021 wave_player::wave_player(AnalogOut *_dac) 00022 { 00023 wave_DAC=_dac; 00024 wave_DAC->write_u16(32768); //DAC is 0-3.3V, so idles at ~1.6V 00025 verbosity=0; 00026 } 00027 00028 //----------------------------------------------------------------------------- 00029 // if verbosity is set then wave player enters a mode where the wave file 00030 // is decoded and displayed to the screen, including sample values put into 00031 // the DAC FIFO, and values read out of the DAC FIFO by the ISR. The DAC output 00032 // itself is so slow as to be unusable, but this might be handy for debugging 00033 // wave files that don't play 00034 //----------------------------------------------------------------------------- 00035 void wave_player::set_verbosity(int v) 00036 { 00037 verbosity=v; 00038 } 00039 00040 //----------------------------------------------------------------------------- 00041 // player function. Takes a pointer to an opened wave file. The file needs 00042 // to be stored in a filesystem with enough bandwidth to feed the wave data. 00043 // LocalFileSystem isn't, but the SDcard is, at least for 22kHz files. The 00044 // SDcard filesystem can be hotrodded by increasing the SPI frequency it uses 00045 // internally. 00046 //----------------------------------------------------------------------------- 00047 void wave_player::play(FILE *wavefile) 00048 { 00049 unsigned chunk_id,chunk_size,channel; 00050 unsigned data,samp_int,i; 00051 short unsigned dac_data; 00052 long long slice_value; 00053 char *slice_buf; 00054 short *data_sptr; 00055 unsigned char *data_bptr; 00056 int *data_wptr; 00057 FMT_STRUCT wav_format; 00058 long slice,num_slices; 00059 extern bool play; 00060 extern bool old_play; 00061 00062 00063 DAC_wptr=0; 00064 DAC_rptr=0; 00065 for (i=0;i<256;i+=2) { 00066 DAC_fifo[i]=0; 00067 DAC_fifo[i+1]=3000; 00068 } 00069 DAC_wptr=4; 00070 DAC_on=0; 00071 00072 fread(&chunk_id,4,1,wavefile); 00073 fread(&chunk_size,4,1,wavefile); 00074 while (!feof(wavefile)) { 00075 00076 if (verbosity) 00077 printf("Read chunk ID 0x%x, size 0x%x\n",chunk_id,chunk_size); 00078 switch (chunk_id) { 00079 case 0x46464952: 00080 fread(&data,4,1,wavefile); 00081 if (verbosity) { 00082 printf("RIFF chunk\n"); 00083 printf(" chunk size %d (0x%x)\n",chunk_size,chunk_size); 00084 printf(" RIFF type 0x%x\n",data); 00085 } 00086 break; 00087 case 0x20746d66: 00088 fread(&wav_format,sizeof(wav_format),1,wavefile); 00089 if (verbosity) { 00090 printf("FORMAT chunk\n"); 00091 printf(" chunk size %d (0x%x)\n",chunk_size,chunk_size); 00092 printf(" compression code %d\n",wav_format.comp_code); 00093 printf(" %d channels\n",wav_format.num_channels); 00094 printf(" %d samples/sec\n",wav_format.sample_rate); 00095 printf(" %d bytes/sec\n",wav_format.avg_Bps); 00096 printf(" block align %d\n",wav_format.block_align); 00097 printf(" %d bits per sample\n",wav_format.sig_bps); 00098 } 00099 if (chunk_size > sizeof(wav_format)) 00100 fseek(wavefile,chunk_size-sizeof(wav_format),SEEK_CUR); 00101 break; 00102 case 0x61746164: 00103 // allocate a buffer big enough to hold a slice 00104 slice_buf=(char *)malloc(wav_format.block_align); 00105 if (!slice_buf) { 00106 printf("Unable to malloc slice buffer"); 00107 exit(1); 00108 } 00109 num_slices=chunk_size/wav_format.block_align; 00110 samp_int=1000000/(wav_format.sample_rate); 00111 if (verbosity) { 00112 printf("DATA chunk\n"); 00113 printf(" chunk size %d (0x%x)\n",chunk_size,chunk_size); 00114 printf(" %d slices\n",num_slices); 00115 printf(" Ideal sample interval=%d\n",(unsigned)(1000000.0/wav_format.sample_rate)); 00116 printf(" programmed interrupt tick interval=%d\n",samp_int); 00117 } 00118 00119 // starting up ticker to write samples out -- no printfs until tick.detach is called 00120 if (verbosity) 00121 tick.attach_us(this,&wave_player::dac_out, 500000); 00122 else 00123 tick.attach_us(this,&wave_player::dac_out, samp_int); 00124 DAC_on=1; 00125 00126 // start reading slices, which contain one sample each for however many channels 00127 // are in the wave file. one channel=mono, two channels=stereo, etc. Since 00128 // mbed only has a single AnalogOut, all of the channels present are averaged 00129 // to produce a single sample value. This summing and averaging happens in 00130 // a variable of type signed long long, to make sure that the data doesn't 00131 // overflow regardless of sample size (8 bits, 16 bits, 32 bits). 00132 // 00133 // note that from what I can find that 8 bit wave files use unsigned data, 00134 // while 16 and 32 bit wave files use signed data 00135 // 00136 for (slice=0;slice<num_slices;slice+=1) { 00137 if (play == false){ 00138 00139 break; 00140 } 00141 fread(slice_buf,wav_format.block_align,1,wavefile); 00142 if (feof(wavefile)) { 00143 printf("Oops -- not enough slices in the wave file\n"); 00144 exit(1); 00145 } 00146 00147 00148 data_sptr=(short *)slice_buf; // 16 bit samples 00149 data_bptr=(unsigned char *)slice_buf; // 8 bit samples 00150 data_wptr=(int *)slice_buf; // 32 bit samples 00151 slice_value=0; 00152 for (channel=0;channel<wav_format.num_channels;channel++) { 00153 switch (wav_format.sig_bps) { 00154 case 16: 00155 if (verbosity) 00156 printf("16 bit channel %d data=%d ",channel,data_sptr[channel]); 00157 slice_value+=data_sptr[channel]; 00158 break; 00159 case 32: 00160 if (verbosity) 00161 printf("32 bit channel %d data=%d ",channel,data_wptr[channel]); 00162 slice_value+=data_wptr[channel]; 00163 break; 00164 case 8: 00165 if (verbosity) 00166 printf("8 bit channel %d data=%d ",channel,(int)data_bptr[channel]); 00167 slice_value+=data_bptr[channel]; 00168 break; 00169 } 00170 } 00171 slice_value/=wav_format.num_channels; 00172 00173 // slice_value is now averaged. Next it needs to be scaled to an unsigned 16 bit value 00174 // with DC offset so it can be written to the DAC. 00175 switch (wav_format.sig_bps) { 00176 case 8: slice_value<<=8; 00177 break; 00178 case 16: slice_value+=32768; 00179 break; 00180 case 32: slice_value>>=16; 00181 slice_value+=32768; 00182 break; 00183 } 00184 dac_data=(short unsigned)slice_value; 00185 if (verbosity) 00186 printf("sample %d wptr %d slice_value %d dac_data %u\n",slice,DAC_wptr,(int)slice_value,dac_data); 00187 DAC_fifo[DAC_wptr]=dac_data; 00188 00189 00190 DAC_wptr=(DAC_wptr+1) & 0xff; 00191 while (DAC_wptr==DAC_rptr) { 00192 } 00193 } 00194 DAC_on=0; 00195 tick.detach(); 00196 free(slice_buf); 00197 break; 00198 case 0x5453494c: 00199 if (verbosity) 00200 printf("INFO chunk, size %d\n",chunk_size); 00201 fseek(wavefile,chunk_size,SEEK_CUR); 00202 break; 00203 default: 00204 printf("unknown chunk type 0x%x, size %d\n",chunk_id,chunk_size); 00205 data=fseek(wavefile,chunk_size,SEEK_CUR); 00206 break; 00207 } 00208 fread(&chunk_id,4,1,wavefile); 00209 fread(&chunk_size,4,1,wavefile); 00210 } 00211 } 00212 00213 00214 void wave_player::dac_out() 00215 { 00216 if (DAC_on) { 00217 #ifdef VERBOSE 00218 printf("ISR rdptr %d got %u\n",DAC_rptr,DAC_fifo[DAC_rptr]); 00219 #endif 00220 wave_DAC->write_u16(DAC_fifo[DAC_rptr]); 00221 DAC_rptr=(DAC_rptr+1) & 0xff; 00222 } 00223 }
Generated on Sat Jul 23 2022 13:47:14 by
1.7.2