1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

raw: fix raw format without fake headers

This commit is contained in:
Steffen Vogel 2018-10-30 10:55:02 +01:00
parent 95bc23d362
commit d2a7107aaa

View file

@ -39,7 +39,7 @@ struct sample;
enum raw_flags {
/** Treat the first three values as: sequenceno, seconds, nanoseconds */
RAW_FAKE_HEADER = (1 << 16) | SAMPLE_HAS_TS_ORIGIN | SAMPLE_HAS_SEQUENCE,
RAW_FAKE_HEADER = (1 << 16),
RAW_BIG_ENDIAN = (1 << 7), /**< Encode data in big-endian byte order */
RAW_BITS_8 = (3 << 24), /**< Pack each value as a byte. */