Remove hints about odd and zero channel counts as they can no longer be set up in...
authorCarl Hetherington <cth@carlh.net>
Thu, 24 Dec 2015 00:30:15 +0000 (00:30 +0000)
committerCarl Hetherington <cth@carlh.net>
Thu, 24 Dec 2015 00:30:15 +0000 (00:30 +0000)
src/wx/hints_dialog.cc

index 00024fabeecc1ba283d92bea1188a5065ef531eb..2cf109e5512a944f2c05293e348a4378b2b2bb6e 100644 (file)
@@ -96,19 +96,10 @@ HintsDialog::film_changed ()
                _text->WriteText (_("You have specified a font file which is larger than 640kB.  This is very likely to cause problems on playback."));
        }
 
-       if (film->audio_channels() % 2) {
-               hint = true;
-               _text->WriteText (_("Your DCP has an odd number of audio channels.  This is very likely to cause problems on playback."));
-               _text->Newline ();
-       } else if (film->audio_channels() < 6) {
+       if (film->audio_channels() < 6) {
                hint = true;
                _text->WriteText (_("Your DCP has fewer than 6 audio channels.  This may cause problems on some projectors."));
                _text->Newline ();
-       } else if (film->audio_channels() == 0) {
-               /* Carsten Kurz reckons having no audio can be a problem */
-               hint = true;
-               _text->WriteText (_("Your DCP has no audio channels.  This is likely to cause problems on playback."));
-               _text->Newline ();
        }
 
        int flat_or_narrower = 0;