summaryrefslogtreecommitdiff
path: root/src/cam/sdl_texture_yuv.h
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2022-08-06 17:35:56 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2022-08-08 17:53:42 +0300
commit7b8df9fe6b3eedc46667d07ad2c90c89ca823e0c (patch)
tree39261ca154738392910ea944dbe38beb1b977863 /src/cam/sdl_texture_yuv.h
parentd4a42894b158f5f248ca94a8331bb8a40e051e3c (diff)
cam: sdl_sink: Add NV12 texture support
Extend the SDL sink with support for NV12 textures, useful on platforms that don't support packed YUYV formats. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Eric Curtin <ecurtin@redhat.com> Tested-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src/cam/sdl_texture_yuv.h')
-rw-r--r--src/cam/sdl_texture_yuv.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/cam/sdl_texture_yuv.h b/src/cam/sdl_texture_yuv.h
index 137b01f8..633ab510 100644
--- a/src/cam/sdl_texture_yuv.h
+++ b/src/cam/sdl_texture_yuv.h
@@ -2,13 +2,20 @@
/*
* Copyright (C) 2022, Ideas on Board Oy
*
- * sdl_texture_yuv.h - SDL Texture YUYV
+ * sdl_texture_yuv.h - SDL YUV Textures
*/
#pragma once
#include "sdl_texture.h"
+class SDLTextureNV12 : public SDLTexture
+{
+public:
+ SDLTextureNV12(const SDL_Rect &rect, unsigned int stride);
+ void update(const std::vector<libcamera::Span<const uint8_t>> &data) override;
+};
+
class SDLTextureYUYV : public SDLTexture
{
public: