satdump/src-core/common/repack_bits_byte.h

14 lines
205 B
C
Raw Permalink Normal View History

2021-02-17 11:44:36 +01:00
#pragma once
#include <cstdint>
#include <cstring>
class RepackBitsByte
{
private:
2021-05-17 14:59:39 +02:00
uint8_t byteToWrite = 0;
2021-02-17 11:44:36 +01:00
int inByteToWrite = 0;
public:
2021-03-21 18:06:39 +01:00
int work(uint8_t *in, int length, uint8_t *out);
2021-02-17 11:44:36 +01:00
};