Add a 32-bit float sample type

This commit is contained in:
Chris Robinson 2021-11-05 16:43:22 -07:00
parent d8e6e28879
commit 8dc7513bc6

View file

@ -67,7 +67,8 @@ typedef struct SoundStreamInfo_
typedef enum SampleType_
{
SampleType_UInt8,
SampleType_Int16
SampleType_Int16,
SampleType_Float32
} SampleType;
typedef enum ChannelConfig_