summaryrefslogtreecommitdiff
path: root/src/lib/film.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/film.h')
-rw-r--r--src/lib/film.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/lib/film.h b/src/lib/film.h
index f5a7c1246..5bb9acf29 100644
--- a/src/lib/film.h
+++ b/src/lib/film.h
@@ -141,7 +141,6 @@ public:
J2K_BANDWIDTH,
DCI_METADATA,
DCP_VIDEO_FRAME_RATE,
- MINIMUM_AUDIO_CHANNELS
};
@@ -218,11 +217,6 @@ public:
return _dcp_audio_channels;
}
- int minimum_audio_channels () const {
- boost::mutex::scoped_lock lm (_state_mutex);
- return _minimum_audio_channels;
- }
-
/* SET */
void set_directory (std::string);
@@ -242,7 +236,6 @@ public:
void set_dci_metadata (DCIMetadata);
void set_dcp_video_frame_rate (int);
void set_dci_date_today ();
- void set_minimum_audio_channels (int);
/** Emitted when some property has of the Film has changed */
mutable boost::signals2::signal<void (Property)> Changed;
@@ -305,7 +298,6 @@ private:
/** The date that we should use in a DCI name */
boost::gregorian::date _dci_date;
int _dcp_audio_channels;
- int _minimum_audio_channels;
/** true if our state has changed since we last saved it */
mutable bool _dirty;