diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-01-17 00:24:13 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-01-17 00:24:13 +0000 |
| commit | 9db7ed5f6499de903313a85d59bb70302e97e7ff (patch) | |
| tree | b2eb84e0e910af55b76c9985ba2c35309a51d8d0 /src/lib/ab_transcode_job.h | |
| parent | f35b2a637ba82e39eb81e030c2e112185349cac5 (diff) | |
shared_ptr is a bit excessive for DecodeOptions.
Diffstat (limited to 'src/lib/ab_transcode_job.h')
| -rw-r--r-- | src/lib/ab_transcode_job.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/ab_transcode_job.h b/src/lib/ab_transcode_job.h index 69c157651..983842038 100644 --- a/src/lib/ab_transcode_job.h +++ b/src/lib/ab_transcode_job.h @@ -23,9 +23,9 @@ #include <boost/shared_ptr.hpp> #include "job.h" +#include "options.h" class Film; -class DecodeOptions; /** @class ABTranscodeJob * @brief Job to run a transcoder which produces output for A/B comparison of various settings. @@ -39,7 +39,7 @@ class ABTranscodeJob : public Job public: ABTranscodeJob ( boost::shared_ptr<Film> f, - boost::shared_ptr<const DecodeOptions> od, + DecodeOptions o, boost::shared_ptr<Job> req ); @@ -47,7 +47,7 @@ public: void run (); private: - boost::shared_ptr<const DecodeOptions> _decode_opt; + DecodeOptions _decode_opt; /** Copy of our Film using the reference filters and scaler */ boost::shared_ptr<Film> _film_b; |
