summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-11-02 23:08:01 +0100
committerCarl Hetherington <cth@carlh.net>2020-11-02 23:08:01 +0100
commit4cf45229bf55344e708fead769f694f13bacf39c (patch)
tree1aa255d4c2bbb4f39c08e0815c35acbc5c272013 /src/lib
parent22d8401d9eadb022e40380a324b5871f77a18158 (diff)
Re-allow audio channel 15 to be mapped so that users can add
their own sign language tracks until DoM supports them properly.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/film.cc2
-rw-r--r--src/lib/util.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc
index 87037f51f..5ee4cb34a 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 && i != 15) {
+ if (i != 8 && i != 9) {
n.push_back (NamedChannel(short_audio_channel_name(i), i));
}
}
diff --git a/src/lib/util.cc b/src/lib/util.cc
index ac868c173..37b03c836 100644
--- a/src/lib/util.cc
+++ b/src/lib/util.cc
@@ -592,7 +592,7 @@ short_audio_channel_name (int c)
_("DBP"),
_("DBS"),
"",
- ""
+ _("Sign")
};
return channels[c];