summaryrefslogtreecommitdiff
path: root/src/lib/audio_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/audio_decoder.cc
parentf35b2a637ba82e39eb81e030c2e112185349cac5 (diff)
shared_ptr is a bit excessive for DecodeOptions.
Diffstat (limited to 'src/lib/audio_decoder.cc')
-rw-r--r--src/lib/audio_decoder.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/audio_decoder.cc b/src/lib/audio_decoder.cc
index 9d8de971c..a038dd2bb 100644
--- a/src/lib/audio_decoder.cc
+++ b/src/lib/audio_decoder.cc
@@ -23,7 +23,7 @@
using boost::optional;
using boost::shared_ptr;
-AudioDecoder::AudioDecoder (shared_ptr<Film> f, shared_ptr<const DecodeOptions> o, Job* j)
+AudioDecoder::AudioDecoder (shared_ptr<Film> f, DecodeOptions o, Job* j)
: Decoder (f, o, j)
{