Merge master.
[dcpomatic.git] / src / lib / sndfile_decoder.cc
index 8848ff4f8a195fef29e3c268782e719322647387..9ba972e565ffbdb47b52056f2aaede885dcee560 100644 (file)
 
 using std::vector;
 using std::string;
-using std::stringstream;
 using std::min;
 using std::cout;
 using boost::shared_ptr;
-using boost::optional;
 
-/* XXX */
-
-SndfileDecoder::SndfileDecoder (shared_ptr<const Film> f, shared_ptr<SndfileContent> c, DecodeOptions o)
-       : Decoder (f, o)
-       , AudioDecoder (f, c, o)
+SndfileDecoder::SndfileDecoder (shared_ptr<const Film> f, shared_ptr<const SndfileContent> c)
+       : Decoder (f)
+       , AudioDecoder (f)
+       , _sndfile_content (c)
 {
-       sf_count_t frames;
-       SNDFILE* sf = open_file (frames);
-       sf_close (sf);
+       _sndfile = sf_open (_sndfile_content->file().string().c_str(), SFM_READ, &_info);
+       if (!_sndfile) {
+               throw DecodeError (_("could not open audio file for reading"));
+       }
+
+       _done = 0;
+       _remaining = _info.frames;
 }
 
-SNDFILE*
-SndfileDecoder::open_file (sf_count_t & frames)
+SndfileDecoder::~SndfileDecoder ()
 {
-       frames = 0;
-       
-       SF_INFO info;
-       SNDFILE* s = sf_open (_sndfile_content->file().string().c_str(), SFM_READ, &info);
-       if (!s) {
-               throw DecodeError (_("could not open external audio file for reading"));
-       }
-
-       frames = info.frames;
-       return s;
+       sf_close (_sndfile);
 }
 
 bool
 SndfileDecoder::pass ()
 {
-       sf_count_t frames;
-       SNDFILE* sndfile = open_file (frames);
-
        /* Do things in half second blocks as I think there may be limits
           to what FFmpeg (and in particular the resampler) can cope with.
        */
        sf_count_t const block = _sndfile_content->audio_frame_rate() / 2;
+       sf_count_t const this_time = min (block, _remaining);
+       
+       shared_ptr<AudioBuffers> audio (new AudioBuffers (_sndfile_content->audio_channels(), this_time));
+       sf_read_float (_sndfile, audio->data(0), this_time);
+       audio->set_frames (this_time);
+       Audio (audio, double(_done) / audio_frame_rate());
+       _done += this_time;
+       _remaining -= this_time;
+
+       return (_remaining == 0);
+}
 
-       shared_ptr<AudioBuffers> audio (new AudioBuffers (_sndfile_content->audio_channels(), block));
-       while (frames > 0) {
-               sf_count_t const this_time = min (block, frames);
-               sf_read_float (sndfile, audio->data(0), this_time);
-               audio->set_frames (this_time);
-               Audio (audio);
-               frames -= this_time;
-       }
+int
+SndfileDecoder::audio_channels () const
+{
+       return _info.channels;
+}
 
-       sf_close (sndfile);
+ContentAudioFrame
+SndfileDecoder::audio_length () const
+{
+       return _info.frames;
+}
 
-       return true;
+int
+SndfileDecoder::audio_frame_rate () const
+{
+       return _info.samplerate;
 }