#include <gr_unpacked_to_packed_ii.h>
Inheritance diagram for gr_unpacked_to_packed_ii:
input: stream of int; output: stream of int
This is the inverse of gr_packed_to_unpacked_XX.
The low bits_per_chunk
bits are extracted from each input byte or short. These bits are then packed densely into the output bytes or shorts, such that all 8 or 16 bits of the output bytes or shorts are filled with valid input bits. The right thing is done if bits_per_chunk is not a power of two.
The combination of gr_packed_to_unpacked_XX followed by gr_chunks_to_symbols_Xf or gr_chunks_to_symbols_Xc handles the general case of mapping from a stream of bytes or shorts into arbitrary float or complex symbols.
gr_packed_to_unpacked_ss, gr_unpacked_to_packed_ss,
Public Member Functions | |
void | forecast (int noutput_items, gr_vector_int &ninput_items_required) |
Estimate input requirements given output request. | |
int | general_work (int noutput_items, gr_vector_int &ninput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items) |
compute output items from input items | |
bool | check_topology (int ninputs, int noutputs) |
Confirm that ninputs and noutputs is an acceptable combination. | |
Friends | |
gr_unpacked_to_packed_ii_sptr | gr_make_unpacked_to_packed_ii (unsigned int bits_per_chunk, gr_endianness_t endianness) |
|
Confirm that ninputs and noutputs is an acceptable combination.
Reimplemented from gr_block. |
|
Estimate input requirements given output request.
noutput_items , estimate the number of data items required on each input stream. The estimate doesn't have to be exact, but should be close.
Reimplemented from gr_block. |
|
compute output items from input items
Implements gr_block. |
|
|