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

@ -25,7 +25,8 @@
#include <atomic>
#include <memory>
namespace decoder
{
struct CacheInfo
{
@ -58,5 +59,6 @@ public:
std::unique_ptr<FLAC__StreamDecoderErrorStatus> lastError_;
};
} // namespace decoder
#endif