Merge master.
[dcpomatic.git] / src / lib / audio_content.h
1 /*
2     Copyright (C) 2013-2014 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 /** @file  src/lib/audio_content.h
21  *  @brief AudioContent and AudioContentProperty classes.
22  */
23
24 #ifndef DCPOMATIC_AUDIO_CONTENT_H
25 #define DCPOMATIC_AUDIO_CONTENT_H
26
27 #include "content.h"
28 #include "audio_mapping.h"
29
30 namespace cxml {
31         class Node;
32 }
33
34 class AudioProcessor;
35
36 class AudioContentProperty
37 {
38 public:
39         static int const AUDIO_CHANNELS;
40         static int const AUDIO_LENGTH;
41         static int const AUDIO_FRAME_RATE;
42         static int const AUDIO_GAIN;
43         static int const AUDIO_DELAY;
44         static int const AUDIO_MAPPING;
45         static int const AUDIO_PROCESSOR;
46 };
47
48 /** @class AudioContent
49  *  @brief Parent class for content which may contain audio data.
50  */
51 class AudioContent : public virtual Content
52 {
53 public:
54         typedef int64_t Frame;
55         
56         AudioContent (boost::shared_ptr<const Film>);
57         AudioContent (boost::shared_ptr<const Film>, DCPTime);
58         AudioContent (boost::shared_ptr<const Film>, boost::filesystem::path);
59         AudioContent (boost::shared_ptr<const Film>, cxml::ConstNodePtr);
60         AudioContent (boost::shared_ptr<const Film>, std::vector<boost::shared_ptr<Content> >);
61
62         void as_xml (xmlpp::Node *) const;
63         std::string technical_summary () const;
64
65         /** @return number of audio channels in the content */
66         virtual int audio_channels () const = 0;
67         /** @return the length of the audio in the content */
68         virtual ContentTime audio_length () const = 0;
69         /** @return the frame rate of the content */
70         virtual int audio_frame_rate () const = 0;
71         virtual AudioMapping audio_mapping () const = 0;
72         virtual void set_audio_mapping (AudioMapping);
73         virtual boost::filesystem::path audio_analysis_path () const;
74
75         int resampled_audio_frame_rate () const;
76         int processed_audio_channels () const;
77
78         boost::signals2::connection analyse_audio (boost::function<void()>);
79
80         void set_audio_gain (double);
81         void set_audio_delay (int);
82         void set_audio_processor (AudioProcessor const *);
83         
84         double audio_gain () const {
85                 boost::mutex::scoped_lock lm (_mutex);
86                 return _audio_gain;
87         }
88
89         int audio_delay () const {
90                 boost::mutex::scoped_lock lm (_mutex);
91                 return _audio_delay;
92         }
93
94         AudioProcessor const * audio_processor () const {
95                 boost::mutex::scoped_lock lm (_mutex);
96                 return _audio_processor;
97         }
98         
99 private:
100         /** Gain to apply to audio in dB */
101         double _audio_gain;
102         /** Delay to apply to audio (positive moves audio later) in milliseconds */
103         int _audio_delay;
104         AudioProcessor const * _audio_processor;
105 };
106
107 #endif