summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-05-10 00:28:51 +0100
committerCarl Hetherington <cth@carlh.net>2015-05-10 00:28:51 +0100
commit8e7f9e4df7d7d7378a31400a4698ddd2378c8fd2 (patch)
treed16cabc36d8f7ff46a43281b98f8a0b686d26fcf
parente0906dd7b37e5fa45d87132bee49815f2e63a53e (diff)
Add more channels to the enum.
-rw-r--r--src/types.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/types.h b/src/types.h
index c65373ba..133abfd5 100644
--- a/src/types.h
+++ b/src/types.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -62,8 +62,12 @@ enum Channel {
LFE = 3, ///< low-frequency effects (sub)
LS = 4, ///< left surround
RS = 5, ///< right surround
- CHANNEL_7 = 6, ///< channel 7; not sure what this should be called
- CHANNEL_8 = 7 ///< channel 8; not sure what this should be called
+ HI = 6,
+ VI = 7,
+ LC = 8,
+ RC = 9,
+ BSL = 10,
+ BSR = 11
};
enum ContentKind