summaryrefslogtreecommitdiff
path: root/src/lib/image.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-07-15 00:14:28 +0100
committerCarl Hetherington <cth@carlh.net>2012-07-15 00:14:28 +0100
commitbb767c7e338414beee132af3e96829c1448e214b (patch)
treebec2858dcc7225a9bcc2acd8170c25508f6df6cb /src/lib/image.h
parent66c9be6bdb1361e5681e094a0c8170d268aa9518 (diff)
Move things round a bit.
Diffstat (limited to 'src/lib/image.h')
-rw-r--r--src/lib/image.h164
1 files changed, 164 insertions, 0 deletions
diff --git a/src/lib/image.h b/src/lib/image.h
new file mode 100644
index 000000000..97ab1d5ff
--- /dev/null
+++ b/src/lib/image.h
@@ -0,0 +1,164 @@
+/*
+ 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.
+
+*/
+
+/** @file src/image.h
+ * @brief A set of classes to describe video images.
+ */
+
+#ifndef DVDOMATIC_IMAGE_H
+#define DVDOMATIC_IMAGE_H
+
+#include <string>
+#include <boost/shared_ptr.hpp>
+extern "C" {
+#include <libavcodec/avcodec.h>
+#include <libavfilter/avfilter.h>
+}
+#include "util.h"
+
+class Scaler;
+class RGBFrameImage;
+class PostProcessImage;
+
+/** @class Image
+ * @brief Parent class for wrappers of some image, in some format, that
+ * can present a set of components and a size in pixels.
+ *
+ * This class also has some conversion / processing methods.
+ *
+ * The main point of this class (and its subclasses) is to abstract
+ * details of FFmpeg's memory management and varying data formats.
+ */
+class Image
+{
+public:
+ Image (PixelFormat p)
+ : _pixel_format (p)
+ {}
+
+ virtual ~Image () {}
+
+ /** @return Array of pointers to arrays of the component data */
+ virtual uint8_t ** data () const = 0;
+
+ /** @return Array of sizes of each line, in pixels */
+ virtual int * line_size () const = 0;
+
+ /** @return Size of the image, in pixels */
+ virtual Size size () const = 0;
+
+ int components () const;
+ int lines (int) const;
+ boost::shared_ptr<RGBFrameImage> scale_and_convert_to_rgb (Size, int, Scaler const *) const;
+ boost::shared_ptr<PostProcessImage> post_process (std::string) const;
+
+#ifdef DEBUG_HASH
+ void hash (std::string) const;
+#endif
+
+ void make_black ();
+
+ PixelFormat pixel_format () const {
+ return _pixel_format;
+ }
+
+private:
+ PixelFormat _pixel_format; ///< FFmpeg's way of describing the pixel format of this Image
+};
+
+/** @class FilterBufferImage
+ * @brief An Image that is held in an AVFilterBufferRef.
+ */
+class FilterBufferImage : public Image
+{
+public:
+ FilterBufferImage (PixelFormat, AVFilterBufferRef *);
+ ~FilterBufferImage ();
+
+ uint8_t ** data () const;
+ int * line_size () const;
+ Size size () const;
+
+private:
+ AVFilterBufferRef* _buffer;
+};
+
+/** @class SimpleImage
+ * @brief An Image for which memory is allocated using a `simple' av_malloc().
+ */
+class SimpleImage : public Image
+{
+public:
+ SimpleImage (PixelFormat, Size);
+ ~SimpleImage ();
+
+ uint8_t ** data () const;
+ int * line_size () const;
+ Size size () const;
+
+ void set_line_size (int, int);
+
+private:
+ Size _size; ///< size in pixels
+ uint8_t** _data; ///< array of pointers to components
+ int* _line_size; ///< array of widths of each line, in bytes
+};
+
+/** @class RGBFrameImage
+ * @brief An RGB image that is held within an AVFrame.
+ */
+class RGBFrameImage : public Image
+{
+public:
+ RGBFrameImage (Size);
+ ~RGBFrameImage ();
+
+ uint8_t ** data () const;
+ int * line_size () const;
+ Size size () const;
+ AVFrame * frame () const {
+ return _frame;
+ }
+
+private:
+ Size _size;
+ AVFrame* _frame;
+ uint8_t* _data;
+};
+
+/** @class PostProcessImage
+ * @brief An image that is the result of an FFmpeg post-processing run.
+ */
+class PostProcessImage : public Image
+{
+public:
+ PostProcessImage (PixelFormat, Size);
+ ~PostProcessImage ();
+
+ uint8_t ** data () const;
+ int * line_size () const;
+ Size size () const;
+
+private:
+ Size _size;
+ uint8_t** _data;
+ int* _line_size;
+};
+
+#endif