Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: src/xz/coder.h

Issue 62403002: Update XZ Utils to 5.0.5 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/xz/
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/scripts/xzmore.1 ('k') | src/xz/coder.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /////////////////////////////////////////////////////////////////////////////// 1 ///////////////////////////////////////////////////////////////////////////////
2 // 2 //
3 /// \file coder.h 3 /// \file coder.h
4 /// \brief Compresses or uncompresses a file 4 /// \brief Compresses or uncompresses a file
5 // 5 //
6 // Author: Lasse Collin 6 // Author: Lasse Collin
7 // 7 //
8 // This file has been put into the public domain. 8 // This file has been put into the public domain.
9 // You can do whatever you want with this file. 9 // You can do whatever you want with this file.
10 // 10 //
(...skipping 28 matching lines...) Expand all
39 39
40 /// If true, the compression settings are automatically adjusted down if 40 /// If true, the compression settings are automatically adjusted down if
41 /// they exceed the memory usage limit. 41 /// they exceed the memory usage limit.
42 extern bool opt_auto_adjust; 42 extern bool opt_auto_adjust;
43 43
44 44
45 /// Set the integrity check type used when compressing 45 /// Set the integrity check type used when compressing
46 extern void coder_set_check(lzma_check check); 46 extern void coder_set_check(lzma_check check);
47 47
48 /// Set preset number 48 /// Set preset number
49 extern void coder_set_preset(size_t new_preset); 49 extern void coder_set_preset(uint32_t new_preset);
50 50
51 /// Enable extreme mode 51 /// Enable extreme mode
52 extern void coder_set_extreme(void); 52 extern void coder_set_extreme(void);
53 53
54 /// Add a filter to the custom filter chain 54 /// Add a filter to the custom filter chain
55 extern void coder_add_filter(lzma_vli id, void *options); 55 extern void coder_add_filter(lzma_vli id, void *options);
56 56
57 /// 57 ///
58 extern void coder_set_compression_settings(void); 58 extern void coder_set_compression_settings(void);
59 59
60 /// Compress or decompress the given file 60 /// Compress or decompress the given file
61 extern void coder_run(const char *filename); 61 extern void coder_run(const char *filename);
OLDNEW
« no previous file with comments | « src/scripts/xzmore.1 ('k') | src/xz/coder.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698