X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Ffilm.h;h=a44c606d680af9b60eb0f4b3e5bc642f6b8d013c;hp=67d00aa54afe8d977a26ffc1edddb18a5a36b009;hb=dc1c279211773ad68cb0348eb802cf5c9594d8dd;hpb=4d54b053b6e9565e026554b1dba31d73a1b492ae diff --git a/src/lib/film.h b/src/lib/film.h index 67d00aa54..a44c606d6 100644 --- a/src/lib/film.h +++ b/src/lib/film.h @@ -115,7 +115,6 @@ public: ContentList content () const; DCPTime length () const; - bool has_subtitles () const; int best_video_frame_rate () const; FrameRateChange active_frame_rate_change (DCPTime) const; @@ -155,7 +154,6 @@ public: CONTAINER, RESOLUTION, SCALER, - WITH_SUBTITLES, SIGNED, ENCRYPTED, J2K_BANDWIDTH, @@ -199,10 +197,6 @@ public: return _scaler; } - bool with_subtitles () const { - return _with_subtitles; - } - /* signed is a reserved word */ bool is_signed () const { return _signed; @@ -256,7 +250,6 @@ public: void set_container (Ratio const *); void set_resolution (Resolution); void set_scaler (Scaler const *); - void set_with_subtitles (bool); void set_signed (bool); void set_encrypted (bool); void set_j2k_bandwidth (int); @@ -309,8 +302,6 @@ private: Resolution _resolution; /** Scaler algorithm to use */ Scaler const * _scaler; - /** True if subtitles should be shown for this film */ - bool _with_subtitles; bool _signed; bool _encrypted; /** bandwidth for J2K files in bits per second */