This commit is contained in:
2024-01-26 09:00:31 -08:00
parent b863f59d14
commit 4a4116da45
5 changed files with 161 additions and 50 deletions

View File

@@ -1,22 +1,20 @@
#pragma once
#include "ehs/Types.h"
#include "ehs/BaseObj.h"
#include "ehs/DataType.h"
#include "ehs/Str.h"
#include "ehs/Serializer.h"
#include "ehs/Vector.h"
#include "ehs/Array.h"
#include "ehs/io/Resource.h"
#include "AudioCodec.h"
namespace ehs
{
class Audio : public BaseObj
class Audio : public Resource
{
private:
static Array<AudioCodec> codecs;
UInt_64 hashId;
Str_8 id;
UInt_64 sampleRate;
DataType dataType;
UInt_8 byteDepth;
@@ -37,7 +35,7 @@ namespace ehs
static const AudioCodec* GetCodec(const Str_8& ext);
~Audio();
~Audio() override;
Audio();
@@ -65,13 +63,7 @@ namespace ehs
operator Byte*();
void Release();
UInt_64 GetHashId() const;
void SetId(Str_8 newId);
Str_8 GetId() const;
void Release() override;
UInt_64 GetSampleRate() const;