Add round-trip KDM test. Fix various bugs in KDM generation. Some string -> path.
[libdcp.git] / src / argb_frame.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 /** @file  src/argb_frame.h
21  *  @brief Container for a single image from a picture asset.
22  */
23
24 #include <stdint.h>
25 #include "util.h"
26
27 namespace libdcp
28 {
29
30 /** @class ARGBFrame
31  *  @brief A single frame of picture data held in an ARGB buffer.
32  *
33  *  The format of the data is:
34  *
35  *  <pre>
36  *  Byte   /- 0 -------|- 1 --------|- 2 --------|- 3 --------|- 4 --------|- 5 --------| ...
37  *         |(0, 0) Blue|(0, 0)Green |(0, 0) Red  |(0, 0) Alpha|(0, 1) Blue |(0, 1) Green| ...
38  *  </pre>
39  *
40  *  So that the first byte is the blue component of the pixel at x=0, y=0, the second
41  *  is the green component, and so on.
42  *
43  *  Lines are packed so that the second row directly follows the first.
44  */
45 class ARGBFrame
46 {
47 public:
48         ARGBFrame (Size size);
49         ~ARGBFrame ();
50
51         uint8_t* data () const {
52                 return _data;
53         }
54
55         /** Length of one picture row in bytes */
56         int stride () const;
57
58         Size size () const {
59                 return _size;
60         }
61
62 private:
63         Size _size;
64         uint8_t* _data;
65 };
66
67 }