No-op: whitespace.
[libdcp.git] / src / picture_asset_writer.h
1 /*
2     Copyright (C) 2012-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/picture_asset_writer.h
21  *  @brief PictureAssetWriter and FrameInfo classes.
22  */
23
24 #ifndef LIBDCP_PICTURE_ASSET_WRITER_H
25 #define LIBDCP_PICTURE_ASSET_WRITER_H
26
27 #include "metadata.h"
28 #include "types.h"
29 #include "asset_writer.h"
30 #include <boost/shared_ptr.hpp>
31 #include <boost/utility.hpp>
32 #include <stdint.h>
33 #include <string>
34 #include <fstream>
35
36 namespace dcp {
37
38 class PictureAsset;
39
40 /** @class FrameInfo
41  *  @brief Information about a single frame (either a monoscopic frame or a left *or* right eye stereoscopic frame)
42  */
43 struct FrameInfo
44 {
45         FrameInfo ()
46                 : offset (0)
47                 , size (0)
48         {}
49
50         FrameInfo (uint64_t o, uint64_t s, std::string h)
51                 : offset (o)
52                 , size (s)
53                 , hash (h)
54         {}
55
56         uint64_t offset;
57         uint64_t size;
58         std::string hash;
59 };
60
61 /** @class PictureAssetWriter
62  *  @brief Parent class for classes which write picture assets.
63  */
64 class PictureAssetWriter : public AssetWriter
65 {
66 public:
67         virtual FrameInfo write (uint8_t *, int) = 0;
68         virtual void fake_write (int) = 0;
69
70 protected:
71         template <class P, class Q>
72         friend void start (PictureAssetWriter *, boost::shared_ptr<P>, Standard, Q *, uint8_t *, int);
73
74         PictureAssetWriter (PictureAsset *, boost::filesystem::path, Standard standard, bool);
75
76         PictureAsset* _picture_asset;
77         bool _started;
78         Standard _standard;
79         bool _overwrite;
80 };
81
82 }
83
84 #endif