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

Dependents:   RSALB_hbridge_helloworld RSALB_lobster WavPlayer_test AudioCODEC_HelloWorld

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers WavPlayerConfig.cpp Source File

WavPlayerConfig.cpp

00001 #include "WavPlayerConfig.h"
00002 
00003 WavPlayerConfig::WavPlayerConfig()
00004 {
00005 
00006     format_tag = 0;
00007     channels = 0;
00008     samples_per_sec = 0;
00009     avg_bytes_per_sec = 0;
00010     block_align = 0;
00011     bits_per_sample = 0;
00012     data_length = 0;
00013 
00014 }