0930ea2b433de047c8286a23b64e6264c298a764
[dcpomatic.git] / src / lib / ffmpeg_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 #ifndef DCPOMATIC_FFMPEG_STREAM_H
21 #define DCPOMATIC_FFMPEG_STREAM_H
22
23 #include <libcxml/cxml.h>
24 #include <boost/lexical_cast.hpp>
25
26 struct AVFormatContext;
27 struct AVStream;
28
29 class FFmpegStream
30 {
31 public:
32         FFmpegStream (std::string n, int i)
33                 : name (n)
34                 , _id (i)
35         {}
36
37         FFmpegStream (cxml::ConstNodePtr);
38
39         void as_xml (xmlpp::Node *) const;
40
41         /** @param c An AVFormatContext.
42          *  @param index A stream index within the AVFormatContext.
43          *  @return true if this FFmpegStream uses the given stream index.
44          */
45         bool uses_index (AVFormatContext const * c, int index) const;
46         AVStream* stream (AVFormatContext const * c) const;
47
48         std::string technical_summary () const {
49                 return "id " + boost::lexical_cast<std::string> (_id);
50         }
51
52         std::string identifier () const {
53                 return boost::lexical_cast<std::string> (_id);
54         }
55
56         std::string name;
57
58         friend bool operator== (FFmpegStream const & a, FFmpegStream const & b);
59         friend bool operator!= (FFmpegStream const & a, FFmpegStream const & b);
60
61 private:
62         int _id;
63 };
64
65 #endif