mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-15 14:32:06 +00:00
Remove __cplusplus defines added by accident. Acked-by: Tom Chung <chiahsuan.chung@amd.com> Signed-off-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com> Signed-off-by: Wayne Lin <wayne.lin@amd.com> Tested-by: Daniel Wheeler <daniel.wheeler@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
17 lines
349 B
C
17 lines
349 B
C
// SPDX-License-Identifier: MIT
|
|
//
|
|
// Copyright 2024 Advanced Micro Devices, Inc.
|
|
|
|
#ifndef __DC_SPL_H__
|
|
#define __DC_SPL_H__
|
|
|
|
#include "dc_spl_types.h"
|
|
#define BLACK_OFFSET_RGB_Y 0x0
|
|
#define BLACK_OFFSET_CBCR 0x8000
|
|
|
|
/* SPL interfaces */
|
|
|
|
bool spl_calculate_scaler_params(struct spl_in *spl_in, struct spl_out *spl_out);
|
|
|
|
#endif /* __DC_SPL_H__ */
|