diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-08-15 22:53:16 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-08-15 22:53:16 +0100 |
| commit | 0072c362d8664edb78b82c061e32afb303f77dbf (patch) | |
| tree | a05d800634a85acce07d61811324a11fdd0eb656 | |
| parent | 6eab18513b46e7ba9d18965a75da8176e21091d5 (diff) | |
Missing files.
| -rw-r--r-- | src/rgba_frame.cc | 41 | ||||
| -rw-r--r-- | src/rgba_frame.h | 43 |
2 files changed, 84 insertions, 0 deletions
diff --git a/src/rgba_frame.cc b/src/rgba_frame.cc new file mode 100644 index 00000000..36157cd3 --- /dev/null +++ b/src/rgba_frame.cc @@ -0,0 +1,41 @@ +/* + Copyright (C) 2012 Carl Hetherington <cth@carlh.net> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +#include "rgba_frame.h" + +using namespace libdcp; + +RGBAFrame::RGBAFrame (int width, int height) + : _width (width) + , _height (height) +{ + _data = new uint8_t[width * height * 4]; +} + + +RGBAFrame::~RGBAFrame () +{ + delete[] _data; +} + +int +RGBAFrame::stride () const +{ + return _width * 4; +} diff --git a/src/rgba_frame.h b/src/rgba_frame.h new file mode 100644 index 00000000..ef1fbaae --- /dev/null +++ b/src/rgba_frame.h @@ -0,0 +1,43 @@ +/* + Copyright (C) 2012 Carl Hetherington <cth@carlh.net> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +#include <stdint.h> + +namespace libdcp +{ + +class RGBAFrame +{ +public: + RGBAFrame (int width, int height); + ~RGBAFrame (); + + uint8_t* data () const { + return _data; + } + + int stride () const; + +private: + int _width; + int _height; + uint8_t* _data; +}; + +} |
