diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-02-26 16:02:15 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-02-26 16:02:15 +0000 |
| commit | 8cc4b5f514795a52ad13c8d6e8527061da14a0d2 (patch) | |
| tree | 22fa410e802b4c5feef393d8de35756a1e15f0c3 /src/lib/image.h | |
| parent | acaa6e95d2833b7d186aac5f2a2179c75188a52a (diff) | |
Speculative support for some new YVU444 pixel formats.
Diffstat (limited to 'src/lib/image.h')
| -rw-r--r-- | src/lib/image.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/image.h b/src/lib/image.h index f40ea9280..6b9ade99e 100644 --- a/src/lib/image.h +++ b/src/lib/image.h @@ -92,7 +92,10 @@ protected: virtual void swap (Image &); float bytes_per_pixel (int) const; -private: +private: + void yuv_16_black (uint16_t); + static uint16_t swap_16 (uint16_t); + AVPixelFormat _pixel_format; ///< FFmpeg's way of describing the pixel format of this Image }; |
