diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-11-02 23:08:01 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-11-02 23:08:01 +0100 |
| commit | 4cf45229bf55344e708fead769f694f13bacf39c (patch) | |
| tree | 1aa255d4c2bbb4f39c08e0815c35acbc5c272013 /src/lib/film.cc | |
| parent | 22d8401d9eadb022e40380a324b5871f77a18158 (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/film.cc')
| -rw-r--r-- | src/lib/film.cc | 2 |
1 files changed, 1 insertions, 1 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)); } } |
