/* SPDX-License-Identifier: LGPL-2.1-or-later */ /* * Copyright (C) 2023, 2024 Red Hat Inc. * * Authors: * Hans de Goede * * DebayerParams header */ #pragma once #include #include namespace libcamera { struct DebayerParams { static constexpr unsigned int kRGBLookupSize = 256; using ColorLookupTable = std::array; ColorLookupTable red; ColorLookupTable green; ColorLookupTable blue; }; } /* namespace libcamera */