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

Side by Side Diff: xz/src/liblzma/common/easy_encoder_memusage.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/easy_encoder.c ('k') | xz/src/liblzma/common/easy_preset.h » ('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_encoder_memusage.c
4 /// \brief Easy .xz Stream encoder memory usage calculation
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(uint64_t)
17 lzma_easy_encoder_memusage(uint32_t preset)
18 {
19 lzma_options_easy opt_easy;
20 if (lzma_easy_preset(&opt_easy, preset))
21 return UINT32_MAX;
22
23 return lzma_raw_encoder_memusage(opt_easy.filters);
24 }
OLDNEW
« no previous file with comments | « xz/src/liblzma/common/easy_encoder.c ('k') | xz/src/liblzma/common/easy_preset.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698