Fix Mono and Stereo being reversed

This commit is contained in:
Tad Hardesty
2016-02-25 04:50:19 -06:00
parent 1df6208ba8
commit f98c05957f
2 changed files with 8 additions and 8 deletions

View File

@@ -35,9 +35,9 @@ pub enum CodingMode {
#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)]
pub enum Channels {
/// One channel.
Mono = 2,
Mono = 1,
/// Two channels, left and right.
Stereo = 1,
Stereo = 2,
}
/// The available bandwidth level settings.