Various bits.
[dcpomatic.git] / src / lib / audio_decoder.cc
index a54c14843927449b4a62f00665ea83020a53bf70..df13a984a4b36416fb1120b6512aca4537484f6c 100644 (file)
 */
 
 #include "audio_decoder.h"
-#include "stream.h"
 
 using boost::optional;
 using boost::shared_ptr;
 
-AudioDecoder::AudioDecoder (shared_ptr<Film> f, DecodeOptions o)
-       : Decoder (f, o)
+AudioDecoder::AudioDecoder (shared_ptr<const Film> f)
+       : Decoder (f)
 {
 
 }
-
-void
-AudioDecoder::set_audio_stream (shared_ptr<AudioStream> s)
-{
-       _audio_stream = s;
-}