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

48 lines
1.3 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: filesink.h
*
* Description: File sink.
* Supports writing floats, complex floats and complex shorts
* to file in text or binary formats.
*
* Reference:
*****************************************************************************/
2021-03-19 03:45:56 -07:00
#ifndef SRSRAN_FILESINK_H
#define SRSRAN_FILESINK_H
#include <stdint.h>
2019-07-09 10:25:09 -07:00
#include <stdio.h>
#include <stdlib.h>
2021-03-19 03:45:56 -07:00
#include "srsran/config.h"
#include "srsran/phy/io/format.h"
/* 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_filesink_t;
2021-03-19 03:45:56 -07:00
SRSRAN_API int srsran_filesink_init(srsran_filesink_t* q, char* filename, srsran_datatype_t type);
2021-03-19 03:45:56 -07:00
SRSRAN_API void srsran_filesink_free(srsran_filesink_t* q);
2015-03-18 08:05:38 -07:00
2021-03-19 03:45:56 -07:00
SRSRAN_API int srsran_filesink_write(srsran_filesink_t* q, void* buffer, int nsamples);
2021-03-19 03:45:56 -07:00
SRSRAN_API int srsran_filesink_write_multi(srsran_filesink_t* q, void** buffer, int nsamples, int nchannels);
2017-07-25 04:17:36 -07:00
2021-03-19 03:45:56 -07:00
#endif // SRSRAN_FILESINK_H