summaryrefslogtreecommitdiff
path: root/src/lib/image.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-10-14 13:15:36 +0100
committerCarl Hetherington <cth@carlh.net>2012-10-14 13:15:36 +0100
commit429e42c019889e90c9e376170b08614654231337 (patch)
treebc23c77f08b6d4af1b25396276f1bbd820fba168 /src/lib/image.h
parent48c8f23660184486efbb34df9d677108b0eab204 (diff)
Remove believed-unnecessary PostProcessImage.
Diffstat (limited to 'src/lib/image.h')
-rw-r--r--src/lib/image.h23
1 files changed, 2 insertions, 21 deletions
diff --git a/src/lib/image.h b/src/lib/image.h
index d10bcae9e..e06a82b7f 100644
--- a/src/lib/image.h
+++ b/src/lib/image.h
@@ -34,7 +34,7 @@ extern "C" {
class Scaler;
class RGBFrameImage;
-class PostProcessImage;
+class SimpleImage;
/** @class Image
* @brief Parent class for wrappers of some image, in some format, that
@@ -67,7 +67,7 @@ public:
int lines (int) const;
boost::shared_ptr<RGBFrameImage> scale_and_convert_to_rgb (Size, int, Scaler const *) const;
boost::shared_ptr<Image> scale (Size, Scaler const *) const;
- boost::shared_ptr<PostProcessImage> post_process (std::string) const;
+ boost::shared_ptr<SimpleImage> post_process (std::string) const;
void make_black ();
@@ -137,23 +137,4 @@ private:
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