Fix detection of same-frame to speed up simple encodes (#548).
[dcpomatic.git] / src / wx / film_viewer.cc
index 0938d52a4cdd094af5cfe0255addf9376e5b52e1..e33a3c118dc92eedf9f63bb1b79c88c88d1834d8 100644 (file)
@@ -144,6 +144,11 @@ FilmViewer::set_film (shared_ptr<Film> f)
                _film.reset ();
                return;
        }
+
+       /* Always burn in subtitles, even if we are set not to, otherwise we won't see them
+          in the preview.
+       */
+       _player->set_burn_subtitles (true);
        
        _film_connection = _film->Changed.connect (boost::bind (&FilmViewer::film_changed, this, _1));