GNU Radio Manual and C++ API Reference  3.7.7
The Free & Open Software Radio Ecosystem
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages

Overview

Byteswaps (in-place) an aligned vector of int16_t's.

Dispatcher Prototype

void volk_16u_byteswap(uint16_t* intsToSwap, unsigned int num_points)

Inputs

  • intsToSwap: The vector of data to byte swap.
  • num_points: The number of data points.

Outputs

  • intsToSwap: returns as an in-place calculation.

Example

int N = 10000;
<FIXME>