summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-05-25 23:30:28 +0000
committerCarl Hetherington <cth@carlh.net>2019-05-31 22:41:21 +0100
commitdfb23250338ceccbe0fc4e405db6e4df4875a225 (patch)
tree2cff8338ff5e7b77fcfe9c157156f8b318f3c5d3
parent43b5ff1d2dc872f9029a7e59a85af59dbad8536f (diff)
Fix slightly unbelievable out-of-bounds array access when setting up the audio map for mixdown-to-stereo.
Forward-ported from 677eaab5c03e9c614ae2bc417a43bd5c1295bb8d in master.
-rw-r--r--src/lib/audio_mapping.cc2
-rw-r--r--src/wx/film_viewer.cc28
2 files changed, 22 insertions, 8 deletions
diff --git a/src/lib/audio_mapping.cc b/src/lib/audio_mapping.cc
index 86add09f4..f07d5dece 100644
--- a/src/lib/audio_mapping.cc
+++ b/src/lib/audio_mapping.cc
@@ -163,6 +163,8 @@ AudioMapping::AudioMapping (cxml::ConstNodePtr node, int state_version)
void
AudioMapping::set (int input_channel, int output_channel, float g)
{
+ DCPOMATIC_ASSERT (input_channel < int(_gain.size()));
+ DCPOMATIC_ASSERT (output_channel < int(_gain[0].size()));
_gain[input_channel][output_channel] = g;
}
diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc
index 9623aef79..a2b055934 100644
--- a/src/wx/film_viewer.cc
+++ b/src/wx/film_viewer.cc
@@ -189,14 +189,26 @@ FilmViewer::recreate_butler ()
Map so that Lt = L(-3dB) + Ls(-3dB) + C(-6dB) + Lfe(-10dB)
Rt = R(-3dB) + Rs(-3dB) + C(-6dB) + Lfe(-10dB)
*/
- map.set (dcp::LEFT, 0, 1 / sqrt(2)); // L -> Lt
- map.set (dcp::RIGHT, 1, 1 / sqrt(2)); // R -> Rt
- map.set (dcp::CENTRE, 0, 1 / 2.0); // C -> Lt
- map.set (dcp::CENTRE, 1, 1 / 2.0); // C -> Rt
- map.set (dcp::LFE, 0, 1 / sqrt(10)); // Lfe -> Lt
- map.set (dcp::LFE, 1, 1 / sqrt(10)); // Lfe -> Rt
- map.set (dcp::LS, 0, 1 / sqrt(2)); // Ls -> Lt
- map.set (dcp::RS, 1, 1 / sqrt(2)); // Rs -> Rt
+ if (_film->audio_channels() > 0) {
+ map.set (dcp::LEFT, 0, 1 / sqrt(2)); // L -> Lt
+ }
+ if (_film->audio_channels() > 1) {
+ map.set (dcp::RIGHT, 1, 1 / sqrt(2)); // R -> Rt
+ }
+ if (_film->audio_channels() > 2) {
+ map.set (dcp::CENTRE, 0, 1 / 2.0); // C -> Lt
+ map.set (dcp::CENTRE, 1, 1 / 2.0); // C -> Rt
+ }
+ if (_film->audio_channels() > 3) {
+ map.set (dcp::LFE, 0, 1 / sqrt(10)); // Lfe -> Lt
+ map.set (dcp::LFE, 1, 1 / sqrt(10)); // Lfe -> Rt
+ }
+ if (_film->audio_channels() > 4) {
+ map.set (dcp::LS, 0, 1 / sqrt(2)); // Ls -> Lt
+ }
+ if (_film->audio_channels() > 5) {
+ map.set (dcp::RS, 1, 1 / sqrt(2)); // Rs -> Rt
+ }
}
_butler.reset (new Butler(_player, map, _audio_channels, bind(&PlayerVideo::force, _1, AV_PIX_FMT_RGB24), false, true));