mirror of
https://github.com/iluvcapra/bwavfile.git
synced 2025-12-31 17:00:44 +00:00
Made more items public
This commit is contained in:
@@ -38,7 +38,7 @@ These are from http://dream.cs.bath.ac.uk/researchdev/wave-ex/mulchaud.rtf
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
enum WaveFmtExtendedChannelMask {
|
pub enum WaveFmtExtendedChannelMask {
|
||||||
FrontLeft = 0x1,
|
FrontLeft = 0x1,
|
||||||
FrontRight = 0x2,
|
FrontRight = 0x2,
|
||||||
FrontCenter = 0x4,
|
FrontCenter = 0x4,
|
||||||
@@ -67,9 +67,9 @@ enum WaveFmtExtendedChannelMask {
|
|||||||
*/
|
*/
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct WaveFmtExtended {
|
pub struct WaveFmtExtended {
|
||||||
valid_bits_per_sample : u16,
|
pub valid_bits_per_sample : u16,
|
||||||
channel_mask : WaveFmtExtendedChannelMask,
|
pub channel_mask : WaveFmtExtendedChannelMask,
|
||||||
type_guid : [u8; 16],
|
pub type_guid : [u8; 16],
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user