Re-allow audio channel 15 to be mapped so that users can add
[dcpomatic.git] / src / lib / film.cc
index e2e77cce2b757ea2be3514186be7321ebb009088..5ee4cb34a65d7f79fb8975ab6df2129dbfd03d24 100644 (file)
@@ -102,6 +102,9 @@ using boost::weak_ptr;
 using boost::dynamic_pointer_cast;
 using boost::optional;
 using boost::is_any_of;
+#if BOOST_VERSION >= 106100
+using namespace boost::placeholders;
+#endif
 using dcp::raw_convert;
 using namespace dcpomatic;
 
@@ -1719,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));
                }
        }