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

Side by Side Diff: xz/src/liblzma/common/easy_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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file easy_encoder.c
4 /// \brief Easy .xz Stream encoder initialization
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 #include "stream_encoder.h"
15
16
17 extern LZMA_API(lzma_ret)
18 lzma_easy_encoder(lzma_stream *strm, uint32_t preset, lzma_check check)
19 {
20 lzma_options_easy opt_easy;
21 if (lzma_easy_preset(&opt_easy, preset))
22 return LZMA_OPTIONS_ERROR;
23
24 return lzma_stream_encoder(strm, opt_easy.filters, check);
25 }
OLDNEW
« no previous file with comments | « xz/src/liblzma/common/easy_decoder_memusage.c ('k') | xz/src/liblzma/common/easy_encoder_memusage.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698