srsLTE/lib/include/srsran/phy/io/filesource.h

49 lines
1.4 KiB
C
Raw Normal View History

/**
*
* \section COPYRIGHT
*
2021-03-19 03:45:56 -07:00
* Copyright 2013-2021 Software Radio Systems Limited
2014-01-28 03:41:17 -08:00
*
* 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.
*
2014-01-28 03:41:17 -08:00
*/
/******************************************************************************
* File: filesource.h
*
* Description: File source.
* Supports reading floats, complex floats and complex shorts
* from file in text or binary formats.
*
* Reference:
*****************************************************************************/
2021-03-19 03:45:56 -07:00
#ifndef SRSRAN_FILESOURCE_H
#define SRSRAN_FILESOURCE_H
2014-01-28 03:41:17 -08:00
#include <stdint.h>
2021-07-23 00:16:58 -07:00
#include <stdio.h>
2014-01-28 03:41:17 -08:00
2021-03-19 03:45:56 -07:00
#include "srsran/config.h"
#include "srsran/phy/io/format.h"
2014-01-28 03:41:17 -08:00
/* Low-level API */
2021-03-19 03:45:56 -07:00
typedef struct SRSRAN_API {
FILE* f;
2021-03-19 03:45:56 -07:00
srsran_datatype_t type;
} srsran_filesource_t;
2014-01-28 03:41:17 -08:00
2021-05-17 08:01:08 -07:00
SRSRAN_API int srsran_filesource_init(srsran_filesource_t* q, const char* filename, srsran_datatype_t type);
2014-01-28 03:41:17 -08:00
2021-03-19 03:45:56 -07:00
SRSRAN_API void srsran_filesource_free(srsran_filesource_t* q);
2015-03-18 08:05:38 -07:00
2021-03-19 03:45:56 -07:00
SRSRAN_API void srsran_filesource_seek(srsran_filesource_t* q, int pos);
2015-03-18 08:05:38 -07:00
2021-03-19 03:45:56 -07:00
SRSRAN_API int srsran_filesource_read(srsran_filesource_t* q, void* buffer, int nsamples);
2014-01-28 03:41:17 -08:00
2021-03-19 03:45:56 -07:00
SRSRAN_API int srsran_filesource_read_multi(srsran_filesource_t* q, void** buffer, int nsamples, int nof_channels);
2017-07-25 04:17:36 -07:00
2021-03-19 03:45:56 -07:00
#endif // SRSRAN_FILESOURCE_H