Untested external audio support; AB transcodes still broken.
[dcpomatic.git] / src / lib / audio_decoder.cc
1 #include "audio_decoder.h"
2 #include "stream.h"
3
4 using boost::optional;
5 using boost::shared_ptr;
6
7 AudioDecoder::AudioDecoder (shared_ptr<Film> f, shared_ptr<const Options> o, Job* j)
8         : Decoder (f, o, j)
9 {
10
11 }
12
13 void
14 AudioDecoder::set_audio_stream (optional<AudioStream> s)
15 {
16         _audio_stream = s;
17 }