A library which allows the playing of Wav files using the TLV320

Dependents:   RSALB_hbridge_helloworld RSALB_lobster WavPlayer_test AudioCODEC_HelloWorld

Committer:
p07gbar
Date:
Fri Sep 21 14:24:00 2012 +0000
Revision:
3:a7380cfc1987
Parent:
0:3695886f3495
Minor fix

Who changed what in which revision?

UserRevisionLine numberNew contents of line
p07gbar 0:3695886f3495 1 #include "WavPlayerConfig.h"
p07gbar 0:3695886f3495 2
p07gbar 0:3695886f3495 3 WavPlayerConfig::WavPlayerConfig()
p07gbar 0:3695886f3495 4 {
p07gbar 0:3695886f3495 5
p07gbar 0:3695886f3495 6 format_tag = 0;
p07gbar 0:3695886f3495 7 channels = 0;
p07gbar 0:3695886f3495 8 samples_per_sec = 0;
p07gbar 0:3695886f3495 9 avg_bytes_per_sec = 0;
p07gbar 0:3695886f3495 10 block_align = 0;
p07gbar 0:3695886f3495 11 bits_per_sample = 0;
p07gbar 0:3695886f3495 12 data_length = 0;
p07gbar 0:3695886f3495 13
p07gbar 0:3695886f3495 14 }