aboutsummaryrefslogtreecommitdiff
path: root/linux/lib/xz/xz_stream.h
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2009-03-22 13:12:47 +0200
committerLasse Collin <lasse.collin@tukaani.org>2009-03-22 13:12:47 +0200
commitbcc4b36559e38e30afe6030c42ea4f369df94989 (patch)
tree8a7297a96e5baa52df62b0ab7bdc2b5399879c45 /linux/lib/xz/xz_stream.h
downloadxz-embedded-bcc4b36559e38e30afe6030c42ea4f369df94989.tar.gz
Initial commit
Diffstat (limited to 'linux/lib/xz/xz_stream.h')
-rw-r--r--linux/lib/xz/xz_stream.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/linux/lib/xz/xz_stream.h b/linux/lib/xz/xz_stream.h
new file mode 100644
index 0000000..de35e67
--- /dev/null
+++ b/linux/lib/xz/xz_stream.h
@@ -0,0 +1,43 @@
+/*
+ * Definitions for handling the .xz file format
+ *
+ * Author: Lasse Collin <lasse.collin@tukaani.org>
+ *
+ * This file has been put into the public domain.
+ * You can do whatever you want with this file.
+ */
+
+#ifndef XZ_STREAM_H
+#define XZ_STREAM_H
+
+#if defined(__KERNEL__) && !defined(XZ_INTERNAL_CRC32)
+# include <linux/crc32.h>
+# undef crc32
+# define xz_crc32(buf, size, crc) \
+ (~crc32_le(~(uint32_t)(crc), buf, size))
+#endif
+
+/*
+ * See the .xz file format specification at
+ * http://tukaani.org/xz/xz-file-format.txt
+ * to understand the container format.
+ */
+
+#define STREAM_HEADER_SIZE 12
+
+#define HEADER_MAGIC "\3757zXZ\0"
+#define HEADER_MAGIC_SIZE 6
+
+#define FOOTER_MAGIC "YZ"
+#define FOOTER_MAGIC_SIZE 2
+
+/*
+ * Variable-length integer can hold a 63-bit unsigned integer, or a special
+ * value to indicate that the value is unknown.
+ */
+typedef uint64_t vli_type;
+
+#define VLI_MAX ((vli_type)-1 / 2)
+#define VLI_UNKNOWN ((vli_type)-1)
+
+#endif