diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/qmmp/qmmp.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/qmmp/qmmp.h b/src/qmmp/qmmp.h index 9424d1948..4103a3d17 100644 --- a/src/qmmp/qmmp.h +++ b/src/qmmp/qmmp.h @@ -86,6 +86,20 @@ public: PCM_S24LE, /*!< Signed 24 bit Little Endian using low three bytes in 32-bit word */ PCM_S32LE /*!< Signed 32 bit Little Endian */ }; + + enum AudioChannel + { + CHAN_NULL = 0x00, + CHAN_FRONT_LEFT = 0x01, + CHAN_FRONT_RIGHT = 0x02, + CHAN_REAR_LEFT = 0x04, + CHAN_REAR_RIGHT = 0x08, + CHAN_CENTER = 0x10, + CHAN_LFE = 0x20, + CHAN_SIDE_LEFT = 0x40, + CHAN_SIDE_RIGHT = 0x80 + }; + /*! * Returns the configuration file name, including the path. */ |
