1 // SPDX-License-Identifier: MIT
3 // Copyright 2024 Advanced Micro Devices, Inc.
5 #ifndef __DC_SPL_TRANSLATE_H__
6 #define __DC_SPL_TRANSLATE_H__
9 #include "dm_helpers.h"
11 /* Map SPL input parameters to pipe context
12 * @pipe_ctx: pipe context
13 * @spl_in: spl input structure
15 void translate_SPL_in_params_from_pipe_ctx(struct pipe_ctx *pipe_ctx, struct spl_in *spl_in);
17 /* Map SPL output parameters to pipe context
18 * @pipe_ctx: pipe context
19 * @spl_out: spl output structure
21 void translate_SPL_out_params_to_pipe_ctx(struct pipe_ctx *pipe_ctx, struct spl_out *spl_out);
23 #endif /* __DC_SPL_TRANSLATE_H__ */