7f36b30a0b9476902ea4856b3038f8ea3f4b41fc
[libdcp.git] / src / mxf_asset.h
1 /*
2     Copyright (C) 2012 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 LIBDCP_MXF_ASSET_H
21 #define LIBDCP_MXF_ASSET_H
22
23 #include "asset.h"
24
25 namespace libdcp
26 {
27
28 class MXFAsset : public Asset
29 {
30 public:
31         /** Construct an MXFAsset.
32          *  @param directory Directory where MXF file is.
33          *  @param file_name Name of MXF file.
34          *  @param progress Signal to inform of progress.
35          *  @param fps Frames per second.
36          *  @param entry_point The entry point of this MXF; ie the first frame that should be used.
37          *  @param length Length in frames.
38          */
39         MXFAsset (std::string directory, std::string file_name, sigc::signal1<void, float>* progress, int fps, int entry_point, int length);
40
41         virtual std::list<std::string> equals (boost::shared_ptr<const Asset> other, EqualityOptions opt) const;
42         
43         int length () const;
44
45 protected:
46         /** Fill in a ADSCP::WriteInfo struct.
47          *  @param w struct to fill in.
48          */
49         void fill_writer_info (ASDCP::WriterInfo* w) const;
50
51         /** Signal to emit to report progress */
52         sigc::signal1<void, float>* _progress;
53         /** Frames per second */
54         int _fps;
55         int _entry_point;
56         /** Length in frames */
57         int _length;
58 };
59
60 }
61
62 #endif