MayaFlux 0.3.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ AudioReadOptions

enum class MayaFlux::IO::AudioReadOptions : uint32_t
strong

Audio-specific reading options.

Enumerator
NONE 
NORMALIZE 

Not implemented — placeholder for future volume filter.

CONVERT_TO_MONO 

Not implemented — placeholder for channel mixer.

DEINTERLEAVE 

Output planar (per-channel) doubles instead of interleaved.

ALL 

Definition at line 16 of file SoundFileReader.hpp.

16 : uint32_t {
17 NONE = 0,
18 NORMALIZE = 1 << 0, ///< Not implemented — placeholder for future volume filter.
19 CONVERT_TO_MONO = 1 << 2, ///< Not implemented — placeholder for channel mixer.
20 DEINTERLEAVE = 1 << 3, ///< Output planar (per-channel) doubles instead of interleaved.
21 ALL = 0xFFFFFFFF
22};
@ CONVERT_TO_MONO
Not implemented — placeholder for channel mixer.
@ NORMALIZE
Not implemented — placeholder for future volume filter.
@ DEINTERLEAVE
Output planar (per-channel) doubles instead of interleaved.