diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-01-20 00:33:57 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-01-20 20:36:46 +0100 |
| commit | 0dc671756f9a6b0213b4273a8933c8f57483c424 (patch) | |
| tree | cce42f60e414a6764211973c8fecd7bc37e599f8 /src/lib/film.h | |
| parent | 8850569d93a8524625b3b595cb6edf45bdf6de07 (diff) | |
Remove the strange tolerant flag in Film.
Instead, we now pass it in directly to Content::examine() and the
Player.
Diffstat (limited to 'src/lib/film.h')
| -rw-r--r-- | src/lib/film.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/lib/film.h b/src/lib/film.h index aeb389cde..7b3e2872b 100644 --- a/src/lib/film.h +++ b/src/lib/film.h @@ -196,14 +196,6 @@ public: bool references_dcp_audio () const; bool contains_atmos_content () const; - void set_tolerant (bool t) { - _tolerant = t; - } - - bool tolerant () const { - return _tolerant; - } - bool last_written_by_earlier_than(int major, int minor, int micro) const; /* GET */ @@ -571,11 +563,6 @@ private: /** film being used as a template, or 0 */ std::shared_ptr<Film> _template_film; - /** Be tolerant of errors in content (currently applies to DCP only). - Not saved as state. - */ - bool _tolerant; - std::map<std::string, std::string> _ui_state; boost::signals2::scoped_connection _playlist_change_connection; |
