MayaFlux 0.4.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 20 of file SoundFileReader.hpp.

20 : uint32_t {
21 NONE = 0,
22 NORMALIZE = 1 << 0, ///< Not implemented — placeholder for future volume filter.
23 CONVERT_TO_MONO = 1 << 2, ///< Not implemented — placeholder for channel mixer.
24 DEINTERLEAVE = 1 << 3, ///< Output planar (per-channel) doubles instead of interleaved.
25 ALL = 0xFFFFFFFF
26};
@ 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.