diff options
Diffstat (limited to 'src/lib/film.h')
| -rw-r--r-- | src/lib/film.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/film.h b/src/lib/film.h index 9eb39fd64..a1cf26bc6 100644 --- a/src/lib/film.h +++ b/src/lib/film.h @@ -71,6 +71,11 @@ public: return _state.name; } + /** @return name to give the DCP */ + std::string dcp_name () const { + return _state.dcp_name (); + } + bool use_dci_name () const { return _state.use_dci_name; } @@ -164,7 +169,6 @@ public: void set_with_subtitles (bool); void set_subtitle_offset (int); void set_subtitle_scale (float); - void set_dci_name_prefix (std::string); void set_audio_language (std::string); void set_subtitle_language (std::string); void set_territory (std::string); @@ -207,10 +211,6 @@ public: return _state.has_subtitles; } - std::string dci_name_prefix () const { - return _state.dci_name_prefix; - } - std::string audio_language () const { return _state.audio_language; } |
