17 lines · c
1// SPDX-License-Identifier: MIT2//3// Copyright 2024 Advanced Micro Devices, Inc.4 5#ifndef __DC_SPL_H__6#define __DC_SPL_H__7 8#include "dc_spl_types.h"9#define BLACK_OFFSET_RGB_Y 0x010#define BLACK_OFFSET_CBCR 0x800011 12/* SPL interfaces */13 14bool spl_calculate_scaler_params(struct spl_in *spl_in, struct spl_out *spl_out);15 16#endif /* __DC_SPL_H__ */17