added simple wave classes

To assist the input/output of PCM data, we use the fairly straight-forward
WAVE format. These classes simplify the input and output of such data.
This commit is contained in:
itsmattkc
2019-11-15 13:49:40 +09:00
parent 7a6dd02e5b
commit 9a44e656b5
7 changed files with 422 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
#include "audioworker.h"
AudioWorker::AudioWorker()
{
}
+11
View File
@@ -0,0 +1,11 @@
#ifndef AUDIOWORKER_H
#define AUDIOWORKER_H
class AudioWorker
{
public:
AudioWorker();
};
#endif // AUDIOWORKER_H