diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-06-29 00:00:55 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-07-01 00:02:52 +0200 |
| commit | a876dc03d70b6d3971ba0fc6e28c59b412c5f0a3 (patch) | |
| tree | 61e7f0d0bd74b3b37ffa21cabe3078680c2260d2 /src/lib/film.cc | |
| parent | 7588273929fa6fe48fa0cf04d33e14bd256cf3f7 (diff) | |
Advanced option to allow mapping to any audio channel (#2279).
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 4084ca59c..37720025b 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -1755,7 +1755,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 (Config::instance()->use_all_audio_channels() || (i != 8 && i != 9 && i != 15)) { n.push_back (NamedChannel(short_audio_channel_name(i), i)); } } |
