Re-allow audio channel 15 to be mapped so that users can add
authorCarl Hetherington <cth@carlh.net>
Mon, 2 Nov 2020 22:08:01 +0000 (23:08 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 2 Nov 2020 22:08:01 +0000 (23:08 +0100)
their own sign language tracks until DoM supports them properly.

src/lib/film.cc
src/lib/util.cc

index 87037f51fb97169a6293e302d262e6aadc19e136..5ee4cb34a65d7f79fb8975ab6df2129dbfd03d24 100644 (file)
@@ -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));
                }
        }
index ac868c17360068a429de9f5dec93abca4534b49e..37b03c83605fa73c1131b6f15ee3216cd3bf2ecd 100644 (file)
@@ -592,7 +592,7 @@ short_audio_channel_name (int c)
                _("DBP"),
                _("DBS"),
                "",
-               ""
+               _("Sign")
        };
 
        return channels[c];