FastLED 3.9.15
Loading...
Searching...
No Matches

◆ StereoMode

enum StereoMode
Enumerator
Stereo 
Joint 
Dual 
Mono 

Definition at line 143 of file coder.h.

143 {
144 Stereo = 0x00, /* two independent channels, but L and R frames might have different # of bits */
145 Joint = 0x01, /* coupled channels - layer III: mix of M-S and intensity, Layers I/II: intensity and direct coding only */
146 Dual = 0x02, /* two independent channels, L and R always have exactly 1/2 the total bitrate */
147 Mono = 0x03 /* one channel */
148} StereoMode;
StereoMode
Definition coder.h:143
@ Stereo
Definition coder.h:144
@ Mono
Definition coder.h:147
@ Dual
Definition coder.h:146
@ Joint
Definition coder.h:145