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

Side by Side Diff: third_party/libwebp/enc/cost.h

Issue 653803003: libwebp: update to 0.4.2-rc2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « third_party/libwebp/enc/config.c ('k') | third_party/libwebp/enc/frame.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 // Copyright 2011 Google Inc. All Rights Reserved. 1 // Copyright 2011 Google Inc. All Rights Reserved.
2 // 2 //
3 // Use of this source code is governed by a BSD-style license 3 // Use of this source code is governed by a BSD-style license
4 // that can be found in the COPYING file in the root of the source 4 // that can be found in the COPYING file in the root of the source
5 // tree. An additional intellectual property rights grant can be found 5 // tree. An additional intellectual property rights grant can be found
6 // in the file PATENTS. All contributing project authors may 6 // in the file PATENTS. All contributing project authors may
7 // be found in the AUTHORS file in the root of the source tree. 7 // be found in the AUTHORS file in the root of the source tree.
8 // ----------------------------------------------------------------------------- 8 // -----------------------------------------------------------------------------
9 // 9 //
10 // Cost tables for level and modes. 10 // Cost tables for level and modes.
(...skipping 24 matching lines...) Expand all
35 CostArray* cost; 35 CostArray* cost;
36 } VP8Residual; 36 } VP8Residual;
37 37
38 void VP8InitResidual(int first, int coeff_type, 38 void VP8InitResidual(int first, int coeff_type,
39 VP8Encoder* const enc, VP8Residual* const res); 39 VP8Encoder* const enc, VP8Residual* const res);
40 40
41 typedef void (*VP8SetResidualCoeffsFunc)(const int16_t* const coeffs, 41 typedef void (*VP8SetResidualCoeffsFunc)(const int16_t* const coeffs,
42 VP8Residual* const res); 42 VP8Residual* const res);
43 extern VP8SetResidualCoeffsFunc VP8SetResidualCoeffs; 43 extern VP8SetResidualCoeffsFunc VP8SetResidualCoeffs;
44 44
45 extern void VP8SetResidualCoeffsInit(void); // must be called first 45 void VP8SetResidualCoeffsInit(void); // must be called first
46 46
47 int VP8RecordCoeffs(int ctx, const VP8Residual* const res); 47 int VP8RecordCoeffs(int ctx, const VP8Residual* const res);
48 48
49 // approximate cost per level: 49 // approximate cost per level:
50 extern const uint16_t VP8LevelFixedCosts[MAX_LEVEL + 1]; 50 extern const uint16_t VP8LevelFixedCosts[MAX_LEVEL + 1];
51 extern const uint16_t VP8EntropyCost[256]; // 8bit fixed-point log(p) 51 extern const uint16_t VP8EntropyCost[256]; // 8bit fixed-point log(p)
52 52
53 // Cost of coding one event with probability 'proba'. 53 // Cost of coding one event with probability 'proba'.
54 static WEBP_INLINE int VP8BitCost(int bit, uint8_t proba) { 54 static WEBP_INLINE int VP8BitCost(int bit, uint8_t proba) {
55 return !bit ? VP8EntropyCost[proba] : VP8EntropyCost[255 - proba]; 55 return !bit ? VP8EntropyCost[proba] : VP8EntropyCost[255 - proba];
56 } 56 }
57 57
58 // Cost calculation function. 58 // Cost calculation function.
59 typedef int (*VP8GetResidualCostFunc)(int ctx0, const VP8Residual* const res); 59 typedef int (*VP8GetResidualCostFunc)(int ctx0, const VP8Residual* const res);
60 extern VP8GetResidualCostFunc VP8GetResidualCost; 60 extern VP8GetResidualCostFunc VP8GetResidualCost;
61 61
62 extern void VP8GetResidualCostInit(void); // must be called first 62 void VP8GetResidualCostInit(void); // must be called first
63 63
64 // Level cost calculations 64 // Level cost calculations
65 extern const uint16_t VP8LevelCodes[MAX_VARIABLE_LEVEL][2]; 65 extern const uint16_t VP8LevelCodes[MAX_VARIABLE_LEVEL][2];
66 void VP8CalculateLevelCosts(VP8Proba* const proba); 66 void VP8CalculateLevelCosts(VP8Proba* const proba);
67 static WEBP_INLINE int VP8LevelCost(const uint16_t* const table, int level) { 67 static WEBP_INLINE int VP8LevelCost(const uint16_t* const table, int level) {
68 return VP8LevelFixedCosts[level] 68 return VP8LevelFixedCosts[level]
69 + table[(level > MAX_VARIABLE_LEVEL) ? MAX_VARIABLE_LEVEL : level]; 69 + table[(level > MAX_VARIABLE_LEVEL) ? MAX_VARIABLE_LEVEL : level];
70 } 70 }
71 71
72 // Mode costs 72 // Mode costs
73 extern const uint16_t VP8FixedCostsUV[4]; 73 extern const uint16_t VP8FixedCostsUV[4];
74 extern const uint16_t VP8FixedCostsI16[4]; 74 extern const uint16_t VP8FixedCostsI16[4];
75 extern const uint16_t VP8FixedCostsI4[NUM_BMODES][NUM_BMODES][NUM_BMODES]; 75 extern const uint16_t VP8FixedCostsI4[NUM_BMODES][NUM_BMODES][NUM_BMODES];
76 76
77 //------------------------------------------------------------------------------ 77 //------------------------------------------------------------------------------
78 78
79 #ifdef __cplusplus 79 #ifdef __cplusplus
80 } // extern "C" 80 } // extern "C"
81 #endif 81 #endif
82 82
83 #endif /* WEBP_ENC_COST_H_ */ 83 #endif /* WEBP_ENC_COST_H_ */
OLDNEW
« no previous file with comments | « third_party/libwebp/enc/config.c ('k') | third_party/libwebp/enc/frame.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698