Expose and rename the supported wave tags and UUIDs

This commit is contained in:
Ian Hobson
2023-05-12 16:52:06 +02:00
parent bd09ed207a
commit 72fea1a493
3 changed files with 31 additions and 28 deletions

View File

@@ -58,7 +58,10 @@ mod wavereader;
mod wavewriter;
pub use bext::Bext;
pub use common_format::CommonFormat;
pub use common_format::{
CommonFormat, WAVE_TAG_EXTENDED, WAVE_TAG_FLOAT, WAVE_TAG_MPEG, WAVE_TAG_PCM,
WAVE_UUID_BFORMAT_FLOAT, WAVE_UUID_BFORMAT_PCM, WAVE_UUID_FLOAT, WAVE_UUID_MPEG, WAVE_UUID_PCM,
};
pub use cue::Cue;
pub use errors::Error;
pub use fmt::{ADMAudioID, ChannelDescriptor, ChannelMask, WaveFmt, WaveFmtExtended};