stream_flags_common.h 871 B

1234567891011121314151617181920212223242526272829303132333435
  1. // SPDX-License-Identifier: 0BSD
  2. ///////////////////////////////////////////////////////////////////////////////
  3. //
  4. /// \file stream_flags_common.h
  5. /// \brief Common stuff for Stream flags coders
  6. //
  7. // Author: Lasse Collin
  8. //
  9. ///////////////////////////////////////////////////////////////////////////////
  10. #ifndef LZMA_STREAM_FLAGS_COMMON_H
  11. #define LZMA_STREAM_FLAGS_COMMON_H
  12. #include "common.h"
  13. /// Size of the Stream Flags field
  14. #define LZMA_STREAM_FLAGS_SIZE 2
  15. lzma_attr_visibility_hidden
  16. extern const uint8_t lzma_header_magic[6];
  17. lzma_attr_visibility_hidden
  18. extern const uint8_t lzma_footer_magic[2];
  19. static inline bool
  20. is_backward_size_valid(const lzma_stream_flags *options)
  21. {
  22. return options->backward_size >= LZMA_BACKWARD_SIZE_MIN
  23. && options->backward_size <= LZMA_BACKWARD_SIZE_MAX
  24. && (options->backward_size & 3) == 0;
  25. }
  26. #endif