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

Side by Side Diff: third_party/brotli/enc/bit_cost.c

Issue 2537133002: Update brotli to v1.0.0-snapshot. (Closed)
Patch Set: Created 4 years 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
OLDNEW
(Empty)
1 /* Copyright 2013 Google Inc. All Rights Reserved.
2
3 Distributed under MIT license.
4 See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
5 */
6
7 /* Functions to estimate the bit cost of Huffman trees. */
8
9 #include "./bit_cost.h"
10
11 #include "../common/constants.h"
12 #include <brotli/types.h>
13 #include "./fast_log.h"
14 #include "./histogram.h"
15 #include "./port.h"
16
17 #if defined(__cplusplus) || defined(c_plusplus)
18 extern "C" {
19 #endif
20
21 #define FN(X) X ## Literal
22 #include "./bit_cost_inc.h" /* NOLINT(build/include) */
23 #undef FN
24
25 #define FN(X) X ## Command
26 #include "./bit_cost_inc.h" /* NOLINT(build/include) */
27 #undef FN
28
29 #define FN(X) X ## Distance
30 #include "./bit_cost_inc.h" /* NOLINT(build/include) */
31 #undef FN
32
33 #if defined(__cplusplus) || defined(c_plusplus)
34 } /* extern "C" */
35 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698