#include <gr_packed_to_unpacked_ii.h>
Inheritance diagram for gr_packed_to_unpacked_ii:
input: stream of int; output: stream of int
This is the inverse of gr_unpacked_to_packed_XX.
The bits in the bytes or shorts input stream are grouped into chunks of bits_per_chunk
bits and each resulting chunk is written right- justified to the output stream of bytes or shorts. All b or 16 bits of the each input bytes or short are processed. 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_packed_to_unpacked_ii_sptr | gr_make_packed_to_unpacked_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. |
|
|