ff43fecb60a224ab59bfabcd079e1b229c5bdb66
[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 <boost/signals2.hpp>
24 #include "asset.h"
25
26 namespace libdcp
27 {
28
29 /** @brief Parent class for assets which have MXF files */      
30 class MXFAsset : public Asset
31 {
32 public:
33         MXFAsset (std::string directory, std::string file_name);
34         
35         /** Construct an MXFAsset.
36          *  @param directory Directory where MXF file is.
37          *  @param file_name Name of MXF file.
38          *  @param progress Signal to inform of progress.
39          *  @param fps Frames per second.
40          *  @param intrinsic_duration Duration of the whole asset in frames.
41          */
42         MXFAsset (std::string directory, std::string file_name, boost::signals2::signal<void (float)>* progress, int fps, int intrinsic_duration);
43
44         void set_entry_point (int e);
45         void set_duration (int d);
46
47         virtual bool equals (boost::shared_ptr<const Asset> other, EqualityOptions opt, std::list<std::string>& notes) const;
48         
49         int intrinsic_duration () const;
50         int frames_per_second () const {
51                 return _fps;
52         }
53
54         void set_intrinsic_duration (int d) {
55                 _intrinsic_duration = d;
56         }
57
58         /** Fill in a ADSCP::WriteInfo struct.
59          *  @param w struct to fill in.
60          *  @param uuid uuid to use.
61          */
62         static void fill_writer_info (ASDCP::WriterInfo* w, std::string uuid);
63
64 protected:
65
66         /** Signal to emit to report progress */
67         boost::signals2::signal<void (float)>* _progress;
68         /** Frames per second */
69         int _fps;
70         /** Start point to present in frames */
71         int _entry_point;
72         /** Total length in frames */
73         int _intrinsic_duration;
74         /** Length to present in frames */
75         int _duration;
76 };
77
78 }
79
80 #endif