diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-06-20 17:34:23 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-06-20 21:20:38 +0100 |
| commit | 50cb31af16240b248700dab1484d7f07656c66df (patch) | |
| tree | 393568f3c24506ac6b004346b9ef5101f9fdcf61 /src/lib/writer.h | |
| parent | edfd92e5554e3389e6456f497f44ca6e866800bf (diff) | |
Various fixes to make audio analysis sort-of work.
Diffstat (limited to 'src/lib/writer.h')
| -rw-r--r-- | src/lib/writer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/writer.h b/src/lib/writer.h index 62714edf3..e56e12e75 100644 --- a/src/lib/writer.h +++ b/src/lib/writer.h @@ -64,7 +64,7 @@ bool operator== (QueueItem const & a, QueueItem const & b); class Writer : public ExceptionStore { public: - Writer (boost::shared_ptr<Film>, boost::shared_ptr<Job>); + Writer (boost::shared_ptr<const Film>, boost::shared_ptr<Job>); bool can_fake_write (int) const; @@ -80,7 +80,7 @@ private: void check_existing_picture_mxf (); /** our Film */ - boost::shared_ptr<Film> _film; + boost::shared_ptr<const Film> _film; boost::shared_ptr<Job> _job; /** the first frame index that does not already exist in our MXF */ int _first_nonexistant_frame; |
