@@ -38,6 +38,7 @@ static inline void src_ff3_72t_ds(int32_t samp_in[3], int32_t samp_out[1], const
3838 * @param samp_out Upsampled output
3939 * @param coefs_ff3 Three-phase FIR coefficients array with [3][24] dimentions
4040 * @param state_ds FIR state array with 24 elements in it
41+ * @note samp_in and samp_out have to be different memory locations
4142 */
4243static inline void src_ff3_72t_us (int32_t samp_in [1 ], int32_t samp_out [3 ], const int32_t coefs_ff3 [3 ][24 ], int32_t state_us [24 ])
4344{
@@ -88,6 +89,7 @@ static inline void src_ff3_96t_ds(int32_t samp_in[3], int32_t samp_out[1], const
8889 * @param samp_out Upsampled output
8990 * @param coefs_ff3 Three-phase FIR coefficients array with [3][32] dimentions
9091 * @param state_ds FIR state array with 32 elements in it
92+ * @note samp_in and samp_out have to be different memory locations
9193 */
9294static inline void src_ff3_96t_us (int32_t samp_in [1 ], int32_t samp_out [3 ], const int32_t coefs_ff3 [3 ][32 ], int32_t state_us [32 ])
9395{
@@ -138,6 +140,7 @@ static inline void src_rat_2_3_96t_ds(int32_t samp_in[3], int32_t samp_out[2], c
138140 * @param samp_out Upsampled output
139141 * @param coefs_ff3 Three-phase FIR coefficients array with [3][32] dimentions
140142 * @param state_ds FIR state array with 32 lements in it
143+ * @note samp_in and samp_out have to be different memory locations
141144 */
142145static inline void src_rat_3_2_96t_us (int32_t samp_in [2 ], int32_t samp_out [3 ], const int32_t coefs_us [3 ][32 ], int32_t state_us [32 ])
143146{
0 commit comments