summaryrefslogtreecommitdiff
path: root/src/cam/sdl_texture_yuyv.cpp
blob: cc161b2cfa79277e30c0be8601700690e855bf7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Copyright (C) 2022, Ideas on Board Oy
 *
 * sdl_texture_yuyv.cpp - SDL Texture YUYV
 */

#include "sdl_texture_yuyv.h"

using namespace libcamera;

SDLTextureYUYV::SDLTextureYUYV(const SDL_Rect &rect)
	: SDLTexture(rect, SDL_PIXELFORMAT_YUY2, 4 * ((rect.w + 1) / 2))
{
}

void SDLTextureYUYV::update(const Span<uint8_t> &data)
{
	SDL_UpdateTexture(ptr_, &rect_, data.data(), pitch_);
}