mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
12 lines
No EOL
191 B
C++
12 lines
No EOL
191 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
void signed_soft_to_unsigned(int8_t *in, uint8_t *out, int nsamples);
|
|
|
|
inline int ensureIs2Multiple(int v)
|
|
{
|
|
if (v % 2 == 1)
|
|
v++;
|
|
return v;
|
|
} |