diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-07-08 15:03:35 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-07-08 15:03:35 +0100 |
| commit | 167cfacc7fe88f69fa433c46b62a54703ed6dca3 (patch) | |
| tree | 03465a06d4ddab473412c7f11f3a9da3e997afef /src | |
| parent | 5bb3a9d85a8ada7e3fcc9efd5072b8e0be299124 (diff) | |
Hints on DCP channel counts, as suggested by Carsten.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/dcp_panel.cc | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/wx/dcp_panel.cc b/src/wx/dcp_panel.cc index 461aeca71..5b882763f 100644 --- a/src/wx/dcp_panel.cc +++ b/src/wx/dcp_panel.cc @@ -733,7 +733,19 @@ DCPPanel::setup_audio_channels_choice () { vector<pair<string, string> > items; for (int i = minimum_allowed_audio_channels(); i <= 16; i += 2) { - items.push_back (make_pair (dcp::raw_convert<string> (i), dcp::raw_convert<string> (i))); + if (i == 2) { + items.push_back (make_pair (wx_to_std (_("2 — stereo")), dcp::raw_convert<string> (i))); + } else if (i == 4) { + items.push_back (make_pair (wx_to_std (_("4 — L/C/R/Lfe")), dcp::raw_convert<string> (i))); + } else if (i == 6) { + items.push_back (make_pair (wx_to_std (_("6 — 5.1")), dcp::raw_convert<string> (i))); + } else if (i == 8) { + items.push_back (make_pair (wx_to_std (_("8 — 5.1/HI/VI")), dcp::raw_convert<string> (i))); + } else if (i == 12) { + items.push_back (make_pair (wx_to_std (_("12 — 7.1/HI/VI")), dcp::raw_convert<string> (i))); + } else { + items.push_back (make_pair (dcp::raw_convert<string> (i), dcp::raw_convert<string> (i))); + } } checked_set (_audio_channels, items); |
