diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-09-01 21:05:25 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-09-01 21:05:25 +0100 |
| commit | cefba53fe130807e96e608ad3bbb87786b654c6e (patch) | |
| tree | d3a4eb003ec3d66289c7b045cc46cf618a54d367 /src/lib/transcoder.cc | |
| parent | 0ec7c9d0b1f3ea58ffe17dd70bea04ad702d164b (diff) | |
Don't start thread in constructor. (Writer)
Diffstat (limited to 'src/lib/transcoder.cc')
| -rw-r--r-- | src/lib/transcoder.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/transcoder.cc b/src/lib/transcoder.cc index 27e35ac52..4e8932268 100644 --- a/src/lib/transcoder.cc +++ b/src/lib/transcoder.cc @@ -62,6 +62,7 @@ Transcoder::Transcoder (shared_ptr<const Film> film, shared_ptr<Job> j) void Transcoder::go () { + _writer->start (); _encoder->begin (); DCPTime const frame = DCPTime::from_frames (1, _film->video_frame_rate ()); |
