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

Side by Side Diff: xz/src/liblzma/common/easy_buffer_encoder.c

Issue 2869016: Add an unpatched version of xz, XZ Utils, to /trunk/deps/third_party (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Patch Set: Created 10 years, 6 months 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 | « xz/src/liblzma/common/common.c ('k') | xz/src/liblzma/common/easy_decoder_memusage.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file easy_buffer_encoder.c
4 /// \brief Easy single-call .xz Stream encoder
5 //
6 // Author: Lasse Collin
7 //
8 // This file has been put into the public domain.
9 // You can do whatever you want with this file.
10 //
11 ///////////////////////////////////////////////////////////////////////////////
12
13 #include "easy_preset.h"
14
15
16 extern LZMA_API(lzma_ret)
17 lzma_easy_buffer_encode(uint32_t preset, lzma_check check,
18 lzma_allocator *allocator, const uint8_t *in, size_t in_size,
19 uint8_t *out, size_t *out_pos, size_t out_size)
20 {
21 lzma_options_easy opt_easy;
22 if (lzma_easy_preset(&opt_easy, preset))
23 return LZMA_OPTIONS_ERROR;
24
25 return lzma_stream_buffer_encode(opt_easy.filters, check,
26 allocator, in, in_size, out, out_pos, out_size);
27 }
OLDNEW
« no previous file with comments | « xz/src/liblzma/common/common.c ('k') | xz/src/liblzma/common/easy_decoder_memusage.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698