srsLTE/lib/include/srsran/phy/resampling/decim.h

31 lines
757 B
C
Raw Normal View History

/**
*
* \section COPYRIGHT
*
2021-03-19 03:45:56 -07:00
* Copyright 2013-2021 Software Radio Systems Limited
*
* By using this file, you agree to the terms and conditions set
* forth in the LICENSE file which can be found at the top level of
* the distribution.
*
*/
/******************************************************************************
* File: decim.h
*
* Description: Integer linear decimation
*
* Reference:
*****************************************************************************/
2021-03-19 03:45:56 -07:00
#ifndef SRSRAN_DECIM_H
#define SRSRAN_DECIM_H
2021-03-19 03:45:56 -07:00
#include "srsran/config.h"
2021-03-19 03:45:56 -07:00
SRSRAN_API void srsran_decim_c(cf_t* input, cf_t* output, int M, int len);
2021-03-19 03:45:56 -07:00
SRSRAN_API void srsran_decim_f(float* input, float* output, int M, int len);
2021-03-19 03:45:56 -07:00
#endif // SRSRAN_DECIM_H