diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-10-03 02:02:12 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-10-03 23:41:02 +0200 |
| commit | c2a17a87868eba87072fc369102b2b3cd8905e5a (patch) | |
| tree | 0f5b5e425476efca9ad297c5e65845ae31531ba6 /src/lib/image_examiner.h | |
| parent | aee64f1b2c9252f8315eaead7d43e1ec58a39ee2 (diff) | |
Add PixelQuanta to VideoContent.
Diffstat (limited to 'src/lib/image_examiner.h')
| -rw-r--r-- | src/lib/image_examiner.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/image_examiner.h b/src/lib/image_examiner.h index cad8683a1..0dcdebad0 100644 --- a/src/lib/image_examiner.h +++ b/src/lib/image_examiner.h @@ -39,6 +39,10 @@ public: VideoRange range () const { return VideoRange::FULL; } + PixelQuanta pixel_quanta () const { + /* See ::yuv - we're assuming the image is not YUV and so not subsampled */ + return {}; + } private: std::weak_ptr<const Film> _film; |
