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_short.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.6 KiB
C++

/*!
* \file interleaved_byte_to_complex_short.h
* \brief Adapts a byte (8-bits) interleaved sample stream into a std::complex<short> stream
* \author Javier Arribas (jarribas(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_SHORT_H
#define GNSS_SDR_INTERLEAVED_BYTE_TO_COMPLEX_SHORT_H
#include "gnss_block_interface.h"
#include <gnuradio/sync_decimator.h>
/** \addtogroup Data_Type
* \{ */
/** \addtogroup data_type_gnuradio_blocks
* \{ */
class interleaved_byte_to_complex_short;
using interleaved_byte_to_complex_short_sptr = gnss_shared_ptr<interleaved_byte_to_complex_short>;
interleaved_byte_to_complex_short_sptr make_interleaved_byte_to_complex_short();
/*!
* \brief This class adapts a short (16-bits) interleaved sample stream
* into a std::complex<short> stream
*/
class interleaved_byte_to_complex_short : 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_short_sptr make_interleaved_byte_to_complex_short();
interleaved_byte_to_complex_short();
};
/** \} */
/** \} */
#endif // GNSS_SDR_INTERLEAVED_BYTE_TO_COMPLEX_SHORT_H