diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-03-02 15:37:13 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-04-19 23:04:32 +0100 |
| commit | 67a68bd971ebe1b35daa3f75873b4ccb53c00ba0 (patch) | |
| tree | 9b1fea4070c3b15f346cc57075bbeed1b963329d /src/lib/image.h | |
| parent | 3449bc0a6d6e77e851240a0953363f5a07ec6517 (diff) | |
Various Doxygen fixes.
Diffstat (limited to 'src/lib/image.h')
| -rw-r--r-- | src/lib/image.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/image.h b/src/lib/image.h index c5fc3dd2d..84871aae2 100644 --- a/src/lib/image.h +++ b/src/lib/image.h @@ -40,7 +40,7 @@ class Socket; class Image { public: - Image (AVPixelFormat, dcp::Size, bool, int extra_pixels = 0); + Image (AVPixelFormat p, dcp::Size s, bool aligned, int extra_pixels = 0); Image (AVFrame *); Image (Image const &); Image (boost::shared_ptr<const Image>, bool); @@ -57,10 +57,10 @@ public: int line_factor (int) const; dcp::Size sample_size (int) const; - boost::shared_ptr<Image> scale (dcp::Size, dcp::YUVToRGB yuv_to_rgb, AVPixelFormat, bool aligned, bool fast) const; + boost::shared_ptr<Image> scale (dcp::Size out_size, dcp::YUVToRGB yuv_to_rgb, AVPixelFormat out_format, bool aligned, bool fast) const; boost::shared_ptr<Image> crop_scale_window ( - Crop c, dcp::Size, dcp::Size, dcp::YUVToRGB yuv_to_rgb, AVPixelFormat, bool aligned, bool fast) - const; + Crop crop, dcp::Size inter_size, dcp::Size out_size, dcp::YUVToRGB yuv_to_rgb, AVPixelFormat out_format, bool aligned, bool fast + ) const; void make_black (); void make_transparent (); |
