Add namespace for encoder and decoder

This commit is contained in:
badaix 2019-11-04 14:53:02 +01:00
parent c1a2fedd8d
commit 07e8290ee4
25 changed files with 124 additions and 38 deletions

View file

@ -21,6 +21,9 @@
#include <memory>
namespace encoder
{
#define ID_RIFF 0x46464952
#define ID_WAVE 0x45564157
#define ID_FMT 0x20746d66
@ -76,3 +79,5 @@ std::string PcmEncoder::name() const
{
return "pcm";
}
} // namespace encoder