Tidy up test film naming.
[dcpomatic.git] / src / lib / transcode_job.cc
index a53a4b6ad1591acb7227bbc578a37a3e014f613a..fe34867b250123a8722f5fe83c15ac74f403c2ab 100644 (file)
@@ -40,7 +40,8 @@ using namespace boost;
  *  @param l A log that we can write to.
  */
 TranscodeJob::TranscodeJob (shared_ptr<const FilmState> s, shared_ptr<const Options> o, Log* l, shared_ptr<Job> req)
-       : Job (s, o, l, req)
+       : Job (s, l, req)
+       , _opt (o)
 {
        
 }
@@ -48,7 +49,7 @@ TranscodeJob::TranscodeJob (shared_ptr<const FilmState> s, shared_ptr<const Opti
 string
 TranscodeJob::name () const
 {
-       return String::compose ("Transcode %1", _fs->name);
+       return String::compose ("Transcode %1", _fs->name());
 }
 
 void