1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-09-20 19:29:48 +00:00
gnss-sdr/src/algorithms/signal_source/gnuradio_blocks/unpack_byte_2bit_samples.cc

85 lines
2.8 KiB
C++

/*!
* \file unpack_byte_2bit_samples.cc
*
* \brief Unpacks byte samples to NSR 2 bits samples
* \author Javier Arribas jarribas (at) cttc.es
* -------------------------------------------------------------------------
*
* Copyright (C) 2010-2018 (see AUTHORS file for a list of contributors)
*
* GNSS-SDR is a software defined Global Navigation
* Satellite Systems receiver
*
* This file is part of GNSS-SDR.
*
* GNSS-SDR is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* GNSS-SDR is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>.
*
* -------------------------------------------------------------------------
*/
#include "unpack_byte_2bit_samples.h"
#include <gnuradio/io_signature.h>
struct byte_2bit_struct
{
signed two_bit_sample : 2; // <- 2 bits wide only
};
unpack_byte_2bit_samples_sptr make_unpack_byte_2bit_samples()
{
return unpack_byte_2bit_samples_sptr(new unpack_byte_2bit_samples());
}
unpack_byte_2bit_samples::unpack_byte_2bit_samples() : sync_interpolator("unpack_byte_2bit_samples",
gr::io_signature::make(1, 1, sizeof(signed char)),
gr::io_signature::make(1, 1, sizeof(float)),
4)
{
}
unpack_byte_2bit_samples::~unpack_byte_2bit_samples() = default;
int unpack_byte_2bit_samples::work(int noutput_items,
gr_vector_const_void_star &input_items,
gr_vector_void_star &output_items)
{
const signed char *in = reinterpret_cast<const signed char *>(input_items[0]);
float *out = reinterpret_cast<float *>(output_items[0]);
byte_2bit_struct sample;
int n = 0;
for (int i = 0; i < noutput_items / 4; i++)
{
// Read packed input sample (1 byte = 4 samples)
signed char c = in[i];
sample.two_bit_sample = c & 3;
out[n++] = static_cast<float>(sample.two_bit_sample);
sample.two_bit_sample = (c >> 2) & 3;
out[n++] = static_cast<float>(sample.two_bit_sample);
sample.two_bit_sample = (c >> 4) & 3;
out[n++] = static_cast<float>(sample.two_bit_sample);
sample.two_bit_sample = (c >> 6) & 3;
out[n++] = static_cast<float>(sample.two_bit_sample);
}
return noutput_items;
}