summaryrefslogtreecommitdiff
path: root/src/lib/film.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-06-08 18:21:37 +0200
committerCarl Hetherington <cth@carlh.net>2020-06-08 18:21:37 +0200
commitd1957e43ef4a3966e35b9f28b8faf96e925d2310 (patch)
tree6f71f8d11e1496d504df4d547455528c71bf3618 /src/lib/film.h
parentf330799459f44d031dc711b947dd2c0cc5a015a3 (diff)
Move upload-DCP-to-TMS button to preferences.
Diffstat (limited to 'src/lib/film.h')
-rw-r--r--src/lib/film.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/lib/film.h b/src/lib/film.h
index 7f7590210..64bb159c7 100644
--- a/src/lib/film.h
+++ b/src/lib/film.h
@@ -224,7 +224,6 @@ public:
AUDIO_PROCESSOR,
REEL_TYPE,
REEL_LENGTH,
- UPLOAD_AFTER_MAKE_DCP,
REENCODE_J2K,
MARKERS,
RATINGS,
@@ -307,10 +306,6 @@ public:
return _reel_length;
}
- bool upload_after_make_dcp () const {
- return _upload_after_make_dcp;
- }
-
std::string context_id () const {
return _context_id;
}
@@ -358,7 +353,6 @@ public:
void set_audio_processor (AudioProcessor const * processor);
void set_reel_type (ReelType);
void set_reel_length (int64_t);
- void set_upload_after_make_dcp (bool);
void set_reencode_j2k (bool);
void set_marker (dcp::Marker type, dcpomatic::DCPTime time);
void unset_marker (dcp::Marker type);
@@ -450,7 +444,6 @@ private:
ReelType _reel_type;
/** Desired reel length in bytes, if _reel_type == REELTYPE_BY_LENGTH */
int64_t _reel_length;
- bool _upload_after_make_dcp;
bool _reencode_j2k;
/** true if the user has ever explicitly set the video frame rate of this film */
bool _user_explicit_video_frame_rate;