summaryrefslogtreecommitdiff
path: root/src/lib/video_decoder.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/video_decoder.h
parentf35b2a637ba82e39eb81e030c2e112185349cac5 (diff)
shared_ptr is a bit excessive for DecodeOptions.
Diffstat (limited to 'src/lib/video_decoder.h')
-rw-r--r--src/lib/video_decoder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/video_decoder.h b/src/lib/video_decoder.h
index 7726d2057..c0eab2140 100644
--- a/src/lib/video_decoder.h
+++ b/src/lib/video_decoder.h
@@ -27,7 +27,7 @@
class VideoDecoder : public VideoSource, public virtual Decoder
{
public:
- VideoDecoder (boost::shared_ptr<Film>, boost::shared_ptr<const DecodeOptions>, Job *);
+ VideoDecoder (boost::shared_ptr<Film>, DecodeOptions, Job *);
/** @return video frames per second, or 0 if unknown */
virtual float frames_per_second () const = 0;