Missed rename.
[dcpomatic.git] / src / lib / sndfile_decoder.cc
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <iostream>
21 #include <sndfile.h>
22 #include "sndfile_content.h"
23 #include "sndfile_decoder.h"
24 #include "film.h"
25 #include "exceptions.h"
26
27 #include "i18n.h"
28
29 using std::vector;
30 using std::string;
31 using std::min;
32 using std::cout;
33 using boost::shared_ptr;
34
35 SndfileDecoder::SndfileDecoder (shared_ptr<const Film> f, shared_ptr<const SndfileContent> c)
36         : Decoder (f)
37         , AudioDecoder (f)
38         , _sndfile_content (c)
39 {
40         _sndfile = sf_open (_sndfile_content->file().string().c_str(), SFM_READ, &_info);
41         if (!_sndfile) {
42                 throw DecodeError (_("could not open audio file for reading"));
43         }
44
45         _done = 0;
46         _remaining = _info.frames;
47 }
48
49 SndfileDecoder::~SndfileDecoder ()
50 {
51         if (_sndfile) {
52                 sf_close (_sndfile);
53         }
54 }
55
56 bool
57 SndfileDecoder::pass ()
58 {
59         /* Do things in half second blocks as I think there may be limits
60            to what FFmpeg (and in particular the resampler) can cope with.
61         */
62         sf_count_t const block = _sndfile_content->audio_frame_rate() / 2;
63         sf_count_t const this_time = min (block, _remaining);
64         
65         shared_ptr<AudioBuffers> audio (new AudioBuffers (_sndfile_content->audio_channels(), this_time));
66         sf_read_float (_sndfile, audio->data(0), this_time);
67         audio->set_frames (this_time);
68         Audio (audio, double(_done) / audio_frame_rate());
69         _done += this_time;
70         _remaining -= this_time;
71
72         return (_remaining == 0);
73 }
74
75 int
76 SndfileDecoder::audio_channels () const
77 {
78         return _info.channels;
79 }
80
81 ContentAudioFrame
82 SndfileDecoder::audio_length () const
83 {
84         return _info.frames;
85 }
86
87 int
88 SndfileDecoder::audio_frame_rate () const
89 {
90         return _info.samplerate;
91 }