summaryrefslogtreecommitdiffstats
path: root/third_party/lzma_sdk/Bcj2.h
diff options
context:
space:
mode:
authorbashi@chromium.org <bashi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-18 23:02:31 +0000
committerbashi@chromium.org <bashi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-18 23:02:31 +0000
commitce59605d9f7aa1ba166dff1c36a2b3705a21cff3 (patch)
tree1d8043aa86e47194ef843273556e690fa5666e4d /third_party/lzma_sdk/Bcj2.h
parent9119274849baf458401656254b079b21ece24455 (diff)
downloadchromium_src-ce59605d9f7aa1ba166dff1c36a2b3705a21cff3.zip
chromium_src-ce59605d9f7aa1ba166dff1c36a2b3705a21cff3.tar.gz
chromium_src-ce59605d9f7aa1ba166dff1c36a2b3705a21cff3.tar.bz2
Update lzma_sdk to 9.20
Copied only C code required to open 7z archive files and uncompress LZMA compression. Updated chrome/installer/util/lzma_util.cc to follow API changes. BUG=None TEST=installer_util_unittests --gtest_filter='LzmaUtilTest.*' Review URL: http://codereview.chromium.org/10114005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132887 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/lzma_sdk/Bcj2.h')
-rw-r--r--third_party/lzma_sdk/Bcj2.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/third_party/lzma_sdk/Bcj2.h b/third_party/lzma_sdk/Bcj2.h
new file mode 100644
index 0000000..dbc0541
--- /dev/null
+++ b/third_party/lzma_sdk/Bcj2.h
@@ -0,0 +1,38 @@
+/* Bcj2.h -- Converter for x86 code (BCJ2)
+2009-02-07 : Igor Pavlov : Public domain */
+
+#ifndef __BCJ2_H
+#define __BCJ2_H
+
+#include "Types.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/*
+Conditions:
+ outSize <= FullOutputSize,
+ where FullOutputSize is full size of output stream of x86_2 filter.
+
+If buf0 overlaps outBuf, there are two required conditions:
+ 1) (buf0 >= outBuf)
+ 2) (buf0 + size0 >= outBuf + FullOutputSize).
+
+Returns:
+ SZ_OK
+ SZ_ERROR_DATA - Data error
+*/
+
+int Bcj2_Decode(
+ const Byte *buf0, SizeT size0,
+ const Byte *buf1, SizeT size1,
+ const Byte *buf2, SizeT size2,
+ const Byte *buf3, SizeT size3,
+ Byte *outBuf, SizeT outSize);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif