summaryrefslogtreecommitdiff
path: root/src/lib/film.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-11-03 20:52:56 +0100
committerCarl Hetherington <cth@carlh.net>2020-11-03 20:52:56 +0100
commit21e78df3645193f696873bdf29d39ea9f772395e (patch)
treeed159514569487385efccc3bffe19bbbdffb381f /src/lib/film.cc
parent842445cb26145dbd66963921d58dd8b307a1b9c5 (diff)
Revert "Re-allow audio channel 15 to be mapped so that users can add"
This reverts commit 4cf45229bf55344e708fead769f694f13bacf39c. It's wrong - the sign language channel is 15 (1-indexed) not 15 (0-indexed) as in this commit.
Diffstat (limited to 'src/lib/film.cc')
-rw-r--r--src/lib/film.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc
index 5ee4cb34a..87037f51f 100644
--- a/src/lib/film.cc
+++ b/src/lib/film.cc
@@ -1722,7 +1722,7 @@ Film::audio_output_names () const
vector<NamedChannel> n;
for (int i = 0; i < audio_channels(); ++i) {
- if (i != 8 && i != 9) {
+ if (i != 8 && i != 9 && i != 15) {
n.push_back (NamedChannel(short_audio_channel_name(i), i));
}
}