Basics of FFmpeg examiner works.
[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 std::cout;
26 using boost::shared_ptr;
27
28 SilenceDecoder::SilenceDecoder (shared_ptr<const Film> f, shared_ptr<NullContent> c)
29         : Decoder (f)
30         , AudioDecoder (f, c)
31 {
32         
33 }
34
35 void
36 SilenceDecoder::pass ()
37 {
38         shared_ptr<const Film> film = _film.lock ();
39         assert (film);
40
41         Time const this_time = min (_audio_content->length() - _next_audio, TIME_HZ / 2);
42         cout << "silence emit " << this_time << " from " << _audio_content->length() << "\n";
43         shared_ptr<AudioBuffers> data (new AudioBuffers (film->dcp_audio_channels(), film->time_to_audio_frames (this_time)));
44         data->make_silent ();
45         audio (data, _next_audio);
46 }
47
48 void
49 SilenceDecoder::seek (Time t)
50 {
51         _next_audio = t;
52 }
53
54 void
55 SilenceDecoder::seek_back ()
56 {
57         boost::shared_ptr<const Film> f = _film.lock ();
58         if (!f) {
59                 return;
60         }
61
62         _next_audio -= f->video_frames_to_time (2);
63 }
64
65 void
66 SilenceDecoder::seek_forward ()
67 {
68         boost::shared_ptr<const Film> f = _film.lock ();
69         if (!f) {
70                 return;
71         }
72
73         _next_audio += f->video_frames_to_time (1);
74 }
75
76 Time
77 SilenceDecoder::position () const
78 {
79         return _next_audio;
80 }
81
82 bool
83 SilenceDecoder::done () const
84 {
85         return audio_done ();
86 }
87