summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-07-01 17:03:16 +0100
committerCarl Hetherington <cth@carlh.net>2014-07-01 17:03:16 +0100
commit096660d2cc3e65ae5e13a69e7ace19ff0d48b39a (patch)
treefa1c32fd182c7cd19ab5565cdd411445d06dbe8d /src/tools
parent7632d0d3da495443b80334363399172e54ebfd7c (diff)
Only burn subtitles if it is turned on.
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/server_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/server_test.cc b/src/tools/server_test.cc
index acafa4a81..0e19a36ac 100644
--- a/src/tools/server_test.cc
+++ b/src/tools/server_test.cc
@@ -50,8 +50,8 @@ static int frame_count = 0;
void
process_video (shared_ptr<PlayerVideo> pvf)
{
- shared_ptr<DCPVideo> local (new DCPVideo (pvf, frame_count, film->video_frame_rate(), 250000000, RESOLUTION_2K, log_));
- shared_ptr<DCPVideo> remote (new DCPVideo (pvf, frame_count, film->video_frame_rate(), 250000000, RESOLUTION_2K, log_));
+ shared_ptr<DCPVideo> local (new DCPVideo (pvf, frame_count, film->video_frame_rate(), 250000000, RESOLUTION_2K, true, log_));
+ shared_ptr<DCPVideo> remote (new DCPVideo (pvf, frame_count, film->video_frame_rate(), 250000000, RESOLUTION_2K, true, log_));
cout << "Frame " << frame_count << ": ";
cout.flush ();