summaryrefslogtreecommitdiff
path: root/src/lib/transcoder.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-01-17 00:24:13 +0000
committerCarl Hetherington <cth@carlh.net>2013-01-17 00:24:13 +0000
commit9db7ed5f6499de903313a85d59bb70302e97e7ff (patch)
treeb2eb84e0e910af55b76c9985ba2c35309a51d8d0 /src/lib/transcoder.h
parentf35b2a637ba82e39eb81e030c2e112185349cac5 (diff)
shared_ptr is a bit excessive for DecodeOptions.
Diffstat (limited to 'src/lib/transcoder.h')
-rw-r--r--src/lib/transcoder.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/transcoder.h b/src/lib/transcoder.h
index ef6a438c8..786010869 100644
--- a/src/lib/transcoder.h
+++ b/src/lib/transcoder.h
@@ -36,7 +36,6 @@ class Gain;
class VideoDecoder;
class AudioDecoder;
class DelayLine;
-class DecodeOptions;
/** @class Transcoder
* @brief A class which takes a FilmState and some Options, then uses those to transcode a Film.
@@ -49,7 +48,7 @@ class Transcoder
public:
Transcoder (
boost::shared_ptr<Film> f,
- boost::shared_ptr<const DecodeOptions> o,
+ DecodeOptions o,
Job* j,
boost::shared_ptr<Encoder> e
);