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

105 lines
4.1 KiB
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: interp.h
*
* Description: Linear and vector interpolation
*
* Reference:
*****************************************************************************/
2021-03-19 03:45:56 -07:00
#ifndef SRSRAN_INTERP_H
#define SRSRAN_INTERP_H
#include <stdbool.h>
#include <stdint.h>
2021-03-19 03:45:56 -07:00
#include "srsran/config.h"
2014-11-11 10:20:09 -08:00
/************* STATIC LINEAR INTERPOLATION FUNCTIONS */
2021-03-19 03:45:56 -07:00
SRSRAN_API cf_t srsran_interp_linear_onesample(cf_t input0, cf_t input1);
2014-11-11 10:20:09 -08:00
2021-03-19 03:45:56 -07:00
SRSRAN_API cf_t srsran_interp_linear_onesample_cabs(cf_t input0, cf_t input1);
2014-11-11 10:20:09 -08:00
2021-03-19 03:45:56 -07:00
SRSRAN_API void srsran_interp_linear_offset_cabs(cf_t* input,
cf_t* output,
uint32_t M,
uint32_t len,
uint32_t off_st,
2015-03-18 11:14:24 -07:00
uint32_t off_end);
2014-11-11 10:20:09 -08:00
2021-03-19 03:45:56 -07:00
SRSRAN_API void srsran_interp_linear_f(float* input, float* output, uint32_t M, uint32_t len);
2014-11-11 10:20:09 -08:00
/* Interpolation between vectors */
typedef struct {
cf_t* diff_vec;
uint32_t vector_len;
uint32_t max_vector_len;
2021-03-19 03:45:56 -07:00
} srsran_interp_linsrsran_vec_t;
2021-03-19 03:45:56 -07:00
SRSRAN_API int srsran_interp_linear_vector_init(srsran_interp_linsrsran_vec_t* q, uint32_t vector_len);
2021-03-19 03:45:56 -07:00
SRSRAN_API void srsran_interp_linear_vector_free(srsran_interp_linsrsran_vec_t* q);
2021-03-19 03:45:56 -07:00
SRSRAN_API int srsran_interp_linear_vector_resize(srsran_interp_linsrsran_vec_t* q, uint32_t vector_len);
2021-03-19 03:45:56 -07:00
SRSRAN_API void srsran_interp_linear_vector(srsran_interp_linsrsran_vec_t* q,
cf_t* in0,
cf_t* in1,
cf_t* between,
uint32_t in1_in0_d,
uint32_t M);
2021-03-19 03:45:56 -07:00
SRSRAN_API void srsran_interp_linear_vector2(srsran_interp_linsrsran_vec_t* q,
cf_t* in0,
cf_t* in1,
cf_t* start,
cf_t* between,
uint32_t in1_in0_d,
uint32_t M);
2021-03-19 03:45:56 -07:00
SRSRAN_API void srsran_interp_linear_vector3(srsran_interp_linsrsran_vec_t* q,
cf_t* in0,
cf_t* in1,
cf_t* start,
cf_t* between,
uint32_t in1_in0_d,
uint32_t M,
bool to_right,
uint32_t len);
2014-11-05 05:19:35 -08:00
2014-11-11 10:20:09 -08:00
/* Interpolation within a vector */
typedef struct {
cf_t* diff_vec;
cf_t* diff_vec2;
float* ramp;
uint32_t vector_len;
uint32_t M;
uint32_t max_vector_len;
uint32_t max_M;
2021-03-19 03:45:56 -07:00
} srsran_interp_lin_t;
2014-11-11 10:20:09 -08:00
2021-03-19 03:45:56 -07:00
SRSRAN_API int srsran_interp_linear_init(srsran_interp_lin_t* q, uint32_t vector_len, uint32_t M);
2014-11-11 10:20:09 -08:00
2021-03-19 03:45:56 -07:00
SRSRAN_API void srsran_interp_linear_free(srsran_interp_lin_t* q);
2021-03-19 03:45:56 -07:00
SRSRAN_API int srsran_interp_linear_resize(srsran_interp_lin_t* q, uint32_t vector_len, uint32_t M);
2021-03-19 03:45:56 -07:00
SRSRAN_API void
srsran_interp_linear_offset(srsran_interp_lin_t* q, cf_t* input, cf_t* output, uint32_t off_st, uint32_t off_end);
2021-03-19 03:45:56 -07:00
#endif // SRSRAN_INTERP_H