1 /* SPDX-License-Identifier: MIT */ 2 3 /* Copyright 2024 Advanced Micro Devices, Inc. */ 4 5 #ifndef __DC_SPL_FILTERS_H__ 6 #define __DC_SPL_FILTERS_H__ 7 8 #include "dc_spl_types.h" 9 10 #define NUM_PHASES_COEFF 33 11 12 void convert_filter_s1_10_to_s1_12(const uint16_t *s1_10_filter, 13 uint16_t *s1_12_filter, int num_taps); 14 15 #endif /* __DC_SPL_FILTERS_H__ */ 16