From: Carl Hetherington Date: Mon, 2 Nov 2020 22:08:01 +0000 (+0100) Subject: Re-allow audio channel 15 to be mapped so that users can add X-Git-Tag: v2.15.106~4 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=4cf45229bf55344e708fead769f694f13bacf39c Re-allow audio channel 15 to be mapped so that users can add their own sign language tracks until DoM supports them properly. --- 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 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];