984d8ccadba95a45f75b82c2702282e1e96fb5dc
[dcpomatic.git] / src / lib / ffmpeg_audio_stream.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 #include "ffmpeg_stream.h"
21 #include "audio_stream.h"
22 #include "dcpomatic_time.h"
23
24 struct ffmpeg_pts_offset_test;
25
26 class FFmpegAudioStream : public FFmpegStream, public AudioStream
27 {
28 public:
29         FFmpegAudioStream (std::string name, int id, int frame_rate, Frame length, int channels)
30                 : FFmpegStream (name, id)
31                 , AudioStream (frame_rate, length, channels)
32         {}
33
34         FFmpegAudioStream (std::string name, int id, int frame_rate, Frame length, AudioMapping mapping)
35                 : FFmpegStream (name, id)
36                 , AudioStream (frame_rate, length, mapping)
37         {}
38
39         FFmpegAudioStream (cxml::ConstNodePtr, int);
40
41         void as_xml (xmlpp::Node *) const;
42
43         /* XXX: should probably be locked */
44
45         boost::optional<ContentTime> first_audio;
46
47 private:
48         friend struct ffmpeg_pts_offset_test;
49
50         /* Constructor for tests */
51         FFmpegAudioStream ()
52                 : FFmpegStream ("", 0)
53                 , AudioStream (0, 0, 0)
54         {}
55 };