summaryrefslogtreecommitdiff
path: root/src/lib/video_decoder.cc
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.cc
parentf35b2a637ba82e39eb81e030c2e112185349cac5 (diff)
shared_ptr is a bit excessive for DecodeOptions.
Diffstat (limited to 'src/lib/video_decoder.cc')
-rw-r--r--src/lib/video_decoder.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/video_decoder.cc b/src/lib/video_decoder.cc
index e0a7576ee..3a803a863 100644
--- a/src/lib/video_decoder.cc
+++ b/src/lib/video_decoder.cc
@@ -28,7 +28,7 @@
using boost::shared_ptr;
using boost::optional;
-VideoDecoder::VideoDecoder (shared_ptr<Film> f, shared_ptr<const DecodeOptions> o, Job* j)
+VideoDecoder::VideoDecoder (shared_ptr<Film> f, DecodeOptions o, Job* j)
: Decoder (f, o, j)
, _video_frame (0)
, _last_source_time (0)