diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-09-15 23:36:21 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-09-27 13:41:46 +0200 |
| commit | 3799e91d126d243d41c44dcb0ca1bfa66b53a57e (patch) | |
| tree | 74348b18d5ac0ef81bbebb27fe32862b22baa0b2 /src/lib/butler.h | |
| parent | 9bfa07293928c371d59db2091ba2b7e715ce5994 (diff) | |
Replace aligned bool with enum Alignment.
Diffstat (limited to 'src/lib/butler.h')
| -rw-r--r-- | src/lib/butler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/butler.h b/src/lib/butler.h index 320e56bf9..cd3891754 100644 --- a/src/lib/butler.h +++ b/src/lib/butler.h @@ -45,7 +45,7 @@ public: int audio_channels, std::function<AVPixelFormat (AVPixelFormat)> pixel_format, VideoRange video_range, - bool aligned, + Image::Alignment alignment, bool fast, bool prepare_only_proxy ); @@ -125,7 +125,7 @@ private: std::function<AVPixelFormat (AVPixelFormat)> _pixel_format; VideoRange _video_range; - bool _aligned; + Image::Alignment _alignment; bool _fast; /** true to ask PlayerVideo::prepare to only prepare the ImageProxy and not also |
