Improve audio mapping handling a bit.
[dcpomatic.git] / src / lib / silence_decoder.cc
1 /*
2     Copyright (C) 2013 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 "silence_decoder.h"
21 #include "null_content.h"
22 #include "audio_buffers.h"
23
24 using std::min;
25 using boost::shared_ptr;
26
27 SilenceDecoder::SilenceDecoder (shared_ptr<const Film> f, shared_ptr<NullContent> c)
28         : Decoder (f)
29         , AudioDecoder (f, c)
30 {
31         
32 }
33
34 void
35 SilenceDecoder::pass ()
36 {
37         shared_ptr<const Film> film = _film.lock ();
38         assert (film);
39         
40         Time const this_time = min (_audio_content->length() - _next_audio, TIME_HZ / 2);
41         shared_ptr<AudioBuffers> data (new AudioBuffers (film->dcp_audio_channels(), film->time_to_audio_frames (this_time)));
42         data->make_silent ();
43         audio (data, _next_audio);
44 }
45
46 void
47 SilenceDecoder::seek (Time t)
48 {
49         _next_audio = t;
50 }
51
52 void
53 SilenceDecoder::seek_back ()
54 {
55         boost::shared_ptr<const Film> f = _film.lock ();
56         if (!f) {
57                 return;
58         }
59
60         _next_audio -= f->video_frames_to_time (2);
61 }
62
63 void
64 SilenceDecoder::seek_forward ()
65 {
66         boost::shared_ptr<const Film> f = _film.lock ();
67         if (!f) {
68                 return;
69         }
70
71         _next_audio += f->video_frames_to_time (1);
72 }
73
74 Time
75 SilenceDecoder::next () const
76 {
77         return _next_audio;
78 }