aboutsummaryrefslogtreecommitdiffstats
path: root/utils/makemhr/makemhr.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-03-24 22:43:43 -0700
committerChris Robinson <[email protected]>2019-03-24 22:43:43 -0700
commit78aeca10c9913a9bf0a42cc86cf641006031b6ba (patch)
tree074e817097e2687baceb4966e0ca3e36d8691acd /utils/makemhr/makemhr.h
parent6edfa6e6e0260910576e073288633cdbd3094503 (diff)
Add a command-line option to force mono input with makemhr
Diffstat (limited to 'utils/makemhr/makemhr.h')
-rw-r--r--utils/makemhr/makemhr.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/makemhr/makemhr.h b/utils/makemhr/makemhr.h
index e22c88e9..047813d8 100644
--- a/utils/makemhr/makemhr.h
+++ b/utils/makemhr/makemhr.h
@@ -40,6 +40,11 @@ using uint = unsigned int;
using complex_d = std::complex<double>;
+enum ChannelModeT : bool {
+ CM_AllowStereo = false,
+ CM_ForceMono = true
+};
+
// Sample and channel type enum values.
enum SampleTypeT {
ST_S16 = 0,