1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-18 11:09:56 +00:00
gnss-sdr/src/algorithms/data_type_adapter/gnuradio_blocks/interleaved_byte_to_complex_byte.h
Carles Fernandez 7308745f05
Apply more concise file header format
Re-license CMake scripts with BSD-3-Clause
2020-12-30 13:35:06 +01:00

56 lines
1.7 KiB
C++

/*!
* \file interleaved_byte_to_complex_byte.h
* \brief Adapts an 8-bits interleaved sample stream into a 16-bits complex stream
* \author Carles Fernandez Prades, cfernandez(at)cttc.es
*
* -----------------------------------------------------------------------------
*
* GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
* This file is part of GNSS-SDR.
*
* Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors)
* SPDX-License-Identifier: GPL-3.0-or-later
*
* -----------------------------------------------------------------------------
*/
#ifndef GNSS_SDR_INTERLEAVED_BYTE_TO_COMPLEX_BYTE_H
#define GNSS_SDR_INTERLEAVED_BYTE_TO_COMPLEX_BYTE_H
#include "gnss_block_interface.h"
#include <gnuradio/sync_decimator.h>
/** \addtogroup Data_Type
* \{ */
/** \addtogroup data_type_gnuradio_blocks data_type_gr_blocks
* GNU Radio Blocks for data type conversion
* \{ */
class interleaved_byte_to_complex_byte;
using interleaved_byte_to_complex_byte_sptr = gnss_shared_ptr<interleaved_byte_to_complex_byte>;
interleaved_byte_to_complex_byte_sptr make_interleaved_byte_to_complex_byte();
/*!
* \brief This class adapts an 8-bits interleaved sample stream
* into a 16-bits complex stream (std::complex<unsigned char>)
*/
class interleaved_byte_to_complex_byte : public gr::sync_decimator
{
public:
int work(int noutput_items,
gr_vector_const_void_star &input_items,
gr_vector_void_star &output_items);
private:
friend interleaved_byte_to_complex_byte_sptr make_interleaved_byte_to_complex_byte();
interleaved_byte_to_complex_byte();
};
/** \} */
/** \} */
#endif // GNSS_SDR_INTERLEAVED_BYTE_TO_COMPLEX_BYTE_H