File f32_to_i16u64_core.h¶
FileList > f32_to_i16u64 > f32_to_i16u64_core.h
Go to the source code of this file
Scale-and-saturate float to Q15-in-uint64 converter. More...
#include "clib_common.h"#include "dp_state.h"#include "jm_perf.h"#include <math.h>
Classes¶
| Type | Name |
|---|---|
| struct | f32_to_i16u64_state_t F32ToI16U64 state. |
Public Functions¶
| Type | Name |
|---|---|
| f32_to_i16u64_state_t * | f32_to_i16u64_create (float scale) Create a f32_to_i16u64 instance. |
| void | f32_to_i16u64_destroy (f32_to_i16u64_state_t * state) Destroy a f32_to_i16u64 instance and release all memory. |
| void | f32_to_i16u64_get_state (const f32_to_i16u64_state_t * state, void * blob) |
| void | f32_to_i16u64_reset (f32_to_i16u64_state_t * state) Reset f32_to_i16u64 to its post-create state. |
| int | f32_to_i16u64_set_state (f32_to_i16u64_state_t * state, const void * blob) |
| size_t | f32_to_i16u64_state_bytes (const f32_to_i16u64_state_t * state) |
| JM_FORCEINLINE JM_HOT uint64_t | f32_to_i16u64_step (f32_to_i16u64_state_t * state, float x) Process one input sample. |
| void | f32_to_i16u64_steps (f32_to_i16u64_state_t * state, const float * input, uint64_t * output, size_t n) Process a block of float samples to Q15-in-uint64. |
Macros¶
| Type | Name |
|---|---|
| define | F32_TO_I16U64_STATE_MAGIC [**DP\_FOURCC**](dp__state_8h.md#define-dp_fourcc) ('F','U','6','4') |
| define | F32_TO_I16U64_STATE_VERSION 1u |
Detailed Description¶
Identical semantics to F32ToI16U32 but the zero-extended Q15 result occupies the lower 16 bits of a uint64, providing 48 bits of upper headroom. This is the input format for the NCO's uint64 phase accumulator pipeline, where the upper bits carry phase increment headroom across accumulations.
input +1.0 → int16 32767 → uint64 0x0000000000007FFF input -1.0 → int16 -32768 → uint64 0x0000000000008000
The default scale of 32768.0 maps [-1, +1] float to Q15 range. A sticky clipped flag is raised on saturation and cleared only by reset().
Lifecycle: create -> (step / steps / reset)* -> destroy
>>> from doppler.cvt import F32ToI16U64
>>> import numpy as np
>>> obj = F32ToI16U64(scale=32768.0)
>>> hex(obj.step(-1.0))
'0x8000'
>>> hex(obj.step(1.0))
'0x7fff'
>>> obj.step(0.0)
0
>>> x = np.array([-1.0, 0.0, 1.0], dtype=np.float32)
>>> obj.steps(x).tolist()
[32768, 0, 32767]
Public Functions Documentation¶
function f32_to_i16u64_create¶
Create a f32_to_i16u64 instance.
Stores scale and initialises the sticky clipped flag to 0.
Parameters:
scaleMultiply factor applied before quantisation and saturation (default: 32768.0f). Use 32768.0 to convert normalised[-1, +1]samples to Q15 packed into the low 16 bits of a uint64.
Returns:
Heap-allocated state, or NULL on allocation failure.
Note:
Caller must call f32_to_i16u64_destroy() when done.
function f32_to_i16u64_destroy¶
Destroy a f32_to_i16u64 instance and release all memory.
Parameters:
stateMay be NULL.
function f32_to_i16u64_get_state¶
function f32_to_i16u64_reset¶
Reset f32_to_i16u64 to its post-create state.
Clears the sticky clipped flag. The scale is preserved.
Parameters:
stateMust be non-NULL.
function f32_to_i16u64_set_state¶
function f32_to_i16u64_state_bytes¶
function f32_to_i16u64_step¶
Process one input sample.
Computes round(x * scale), saturates to [-32768, 32767], then zero-extends the int16 bit pattern into the lower 16 bits of a uint64. The clipped flag is set if saturation occurred.
Parameters:
stateMust be non-NULL.xNormalised float input sample.
Returns:
Q15 value packed into the lower 16 bits of a uint64.
function f32_to_i16u64_steps¶
Process a block of float samples to Q15-in-uint64.
void f32_to_i16u64_steps (
f32_to_i16u64_state_t * state,
const float * input,
uint64_t * output,
size_t n
)
Applies step() to every element. The clipped flag is updated cumulatively across the block. Accepts an optional pre-allocated output array; allocates a fresh one when output is NULL.
Parameters:
stateMust be non-NULL.inputInput float32 array; must contain at leastnelements.outputOutput uint64 array; must contain at leastnelements.nNumber of samples to process.
>>> from doppler.cvt import F32ToI16U64
>>> import numpy as np
>>> F32ToI16U64().steps(np.array([0.0, 0.5], dtype=np.float32)).tolist()
[0, 16384]
Macro Definition Documentation¶
define F32_TO_I16U64_STATE_MAGIC¶
define F32_TO_I16U64_STATE_VERSION¶
The documentation for this class was generated from the following file native/inc/f32_to_i16u64/f32_to_i16u64_core.h