diff options
author | Chris Robinson <[email protected]> | 2019-03-24 22:43:43 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-03-24 22:43:43 -0700 |
commit | 78aeca10c9913a9bf0a42cc86cf641006031b6ba (patch) | |
tree | 074e817097e2687baceb4966e0ca3e36d8691acd /utils/makemhr/makemhr.h | |
parent | 6edfa6e6e0260910576e073288633cdbd3094503 (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.h | 5 |
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, |