38 static constexpr std::array<uint8_t, 4> kMagicV1 = {0x50, 0x46, 0x41, 0x31};
40 static constexpr int32_t kMagicLength = 4;
41 static constexpr int32_t kFooterStartMagicOffset = 0;
42 static constexpr int32_t kFooterStartMagicLength = kMagicLength;
43 static constexpr int32_t kFooterStructPayloadSizeOffset = 0;
44 static constexpr int32_t kFooterStructFlagsOffset = kFooterStructPayloadSizeOffset + 4;
45 static constexpr int32_t kFooterStructFlagsLength = 4;
46 static constexpr int32_t kFooterStructMagicOffset =
47 kFooterStructFlagsOffset + kFooterStructFlagsLength;
50 static constexpr int32_t kFooterStructLength = kFooterStructMagicOffset + kMagicLength;
54 PuffinCompressionCodec::kLz4;