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

Side by Side Diff: third_party/libwebp/dsp/dsp.h

Issue 1546003002: libwebp: update to 0.5.0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 11 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/dsp/dec_sse41.c ('k') | third_party/libwebp/dsp/enc.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 // Speed-critical functions. 10 // Speed-critical functions.
11 // 11 //
12 // Author: Skal (pascal.massimino@gmail.com) 12 // Author: Skal (pascal.massimino@gmail.com)
13 13
14 #ifndef WEBP_DSP_DSP_H_ 14 #ifndef WEBP_DSP_DSP_H_
15 #define WEBP_DSP_DSP_H_ 15 #define WEBP_DSP_DSP_H_
16 16
17 #ifdef HAVE_CONFIG_H
18 #include "../webp/config.h"
19 #endif
20
21 #include "../webp/types.h" 17 #include "../webp/types.h"
18 #include "../utils/utils.h"
22 19
23 #ifdef __cplusplus 20 #ifdef __cplusplus
24 extern "C" { 21 extern "C" {
25 #endif 22 #endif
26 23
24 #define BPS 32 // this is the common stride for enc/dec
25
27 //------------------------------------------------------------------------------ 26 //------------------------------------------------------------------------------
28 // CPU detection 27 // CPU detection
29 28
30 #if defined(__GNUC__) 29 #if defined(__GNUC__)
31 # define LOCAL_GCC_VERSION ((__GNUC__ << 8) | __GNUC_MINOR__) 30 # define LOCAL_GCC_VERSION ((__GNUC__ << 8) | __GNUC_MINOR__)
32 # define LOCAL_GCC_PREREQ(maj, min) \ 31 # define LOCAL_GCC_PREREQ(maj, min) \
33 (LOCAL_GCC_VERSION >= (((maj) << 8) | (min))) 32 (LOCAL_GCC_VERSION >= (((maj) << 8) | (min)))
34 #else 33 #else
35 # define LOCAL_GCC_VERSION 0 34 # define LOCAL_GCC_VERSION 0
36 # define LOCAL_GCC_PREREQ(maj, min) 0 35 # define LOCAL_GCC_PREREQ(maj, min) 0
37 #endif 36 #endif
38 37
39 #ifndef __has_builtin 38 #ifndef __has_builtin
40 # define __has_builtin(x) 0 39 # define __has_builtin(x) 0
41 #endif 40 #endif
42 41
43 #if defined(_MSC_VER) && _MSC_VER > 1310 && \ 42 #if defined(_MSC_VER) && _MSC_VER > 1310 && \
44 (defined(_M_X64) || defined(_M_IX86)) 43 (defined(_M_X64) || defined(_M_IX86))
45 #define WEBP_MSC_SSE2 // Visual C++ SSE2 targets 44 #define WEBP_MSC_SSE2 // Visual C++ SSE2 targets
46 #endif 45 #endif
47 46
47 #if defined(_MSC_VER) && _MSC_VER >= 1500 && \
48 (defined(_M_X64) || defined(_M_IX86))
49 #define WEBP_MSC_SSE41 // Visual C++ SSE4.1 targets
50 #endif
51
48 // WEBP_HAVE_* are used to indicate the presence of the instruction set in dsp 52 // WEBP_HAVE_* are used to indicate the presence of the instruction set in dsp
49 // files without intrinsics, allowing the corresponding Init() to be called. 53 // files without intrinsics, allowing the corresponding Init() to be called.
50 // Files containing intrinsics will need to be built targeting the instruction 54 // Files containing intrinsics will need to be built targeting the instruction
51 // set so should succeed on one of the earlier tests. 55 // set so should succeed on one of the earlier tests.
52 #if defined(__SSE2__) || defined(WEBP_MSC_SSE2) || defined(WEBP_HAVE_SSE2) 56 #if defined(__SSE2__) || defined(WEBP_MSC_SSE2) || defined(WEBP_HAVE_SSE2)
53 #define WEBP_USE_SSE2 57 #define WEBP_USE_SSE2
54 #endif 58 #endif
55 59
60 #if defined(__SSE4_1__) || defined(WEBP_MSC_SSE41) || defined(WEBP_HAVE_SSE41)
61 #define WEBP_USE_SSE41
62 #endif
63
56 #if defined(__AVX2__) || defined(WEBP_HAVE_AVX2) 64 #if defined(__AVX2__) || defined(WEBP_HAVE_AVX2)
57 #define WEBP_USE_AVX2 65 #define WEBP_USE_AVX2
58 #endif 66 #endif
59 67
60 #if defined(__ANDROID__) && defined(__ARM_ARCH_7A__) 68 #if defined(__ANDROID__) && defined(__ARM_ARCH_7A__)
61 #define WEBP_ANDROID_NEON // Android targets that might support NEON 69 #define WEBP_ANDROID_NEON // Android targets that might support NEON
62 #endif 70 #endif
63 71
64 // The intrinsics currently cause compiler errors with arm-nacl-gcc and the 72 // The intrinsics currently cause compiler errors with arm-nacl-gcc and the
65 // inline assembly would need to be modified for use with Native Client. 73 // inline assembly would need to be modified for use with Native Client.
66 #if (defined(__ARM_NEON__) || defined(WEBP_ANDROID_NEON) || \ 74 #if (defined(__ARM_NEON__) || defined(WEBP_ANDROID_NEON) || \
67 defined(__aarch64__)) && !defined(__native_client__) 75 defined(__aarch64__)) && !defined(__native_client__)
68 #define WEBP_USE_NEON 76 #define WEBP_USE_NEON
69 #endif 77 #endif
70 78
79 #if defined(_MSC_VER) && _MSC_VER >= 1700 && defined(_M_ARM)
80 #define WEBP_USE_NEON
81 #define WEBP_USE_INTRINSICS
82 #endif
83
71 #if defined(__mips__) && !defined(__mips64) && \ 84 #if defined(__mips__) && !defined(__mips64) && \
72 defined(__mips_isa_rev) && (__mips_isa_rev >= 1) && (__mips_isa_rev < 6) 85 defined(__mips_isa_rev) && (__mips_isa_rev >= 1) && (__mips_isa_rev < 6)
73 #define WEBP_USE_MIPS32 86 #define WEBP_USE_MIPS32
74 #if (__mips_isa_rev >= 2) 87 #if (__mips_isa_rev >= 2)
75 #define WEBP_USE_MIPS32_R2 88 #define WEBP_USE_MIPS32_R2
89 #if defined(__mips_dspr2) || (__mips_dsp_rev >= 2)
90 #define WEBP_USE_MIPS_DSP_R2
91 #endif
92 #endif
93 #endif
94
95 // This macro prevents thread_sanitizer from reporting known concurrent writes.
96 #define WEBP_TSAN_IGNORE_FUNCTION
97 #if defined(__has_feature)
98 #if __has_feature(thread_sanitizer)
99 #undef WEBP_TSAN_IGNORE_FUNCTION
100 #define WEBP_TSAN_IGNORE_FUNCTION __attribute__((no_sanitize_thread))
76 #endif 101 #endif
77 #endif 102 #endif
78 103
79 typedef enum { 104 typedef enum {
80 kSSE2, 105 kSSE2,
81 kSSE3, 106 kSSE3,
107 kSSE4_1,
82 kAVX, 108 kAVX,
83 kAVX2, 109 kAVX2,
84 kNEON, 110 kNEON,
85 kMIPS32 111 kMIPS32,
112 kMIPSdspR2
86 } CPUFeature; 113 } CPUFeature;
87 // returns true if the CPU supports the feature. 114 // returns true if the CPU supports the feature.
88 typedef int (*VP8CPUInfo)(CPUFeature feature); 115 typedef int (*VP8CPUInfo)(CPUFeature feature);
89 extern VP8CPUInfo VP8GetCPUInfo; 116 extern VP8CPUInfo VP8GetCPUInfo;
90 117
91 //------------------------------------------------------------------------------ 118 //------------------------------------------------------------------------------
119 // Init stub generator
120
121 // Defines an init function stub to ensure each module exposes a symbol,
122 // avoiding a compiler warning.
123 #define WEBP_DSP_INIT_STUB(func) \
124 extern void func(void); \
125 WEBP_TSAN_IGNORE_FUNCTION void func(void) {}
126
127 //------------------------------------------------------------------------------
92 // Encoding 128 // Encoding
93 129
94 // Transforms 130 // Transforms
95 // VP8Idct: Does one of two inverse transforms. If do_two is set, the transforms 131 // VP8Idct: Does one of two inverse transforms. If do_two is set, the transforms
96 // will be done for (ref, in, dst) and (ref + 4, in + 16, dst + 4). 132 // will be done for (ref, in, dst) and (ref + 4, in + 16, dst + 4).
97 typedef void (*VP8Idct)(const uint8_t* ref, const int16_t* in, uint8_t* dst, 133 typedef void (*VP8Idct)(const uint8_t* ref, const int16_t* in, uint8_t* dst,
98 int do_two); 134 int do_two);
99 typedef void (*VP8Fdct)(const uint8_t* src, const uint8_t* ref, int16_t* out); 135 typedef void (*VP8Fdct)(const uint8_t* src, const uint8_t* ref, int16_t* out);
100 typedef void (*VP8WHT)(const int16_t* in, int16_t* out); 136 typedef void (*VP8WHT)(const int16_t* in, int16_t* out);
101 extern VP8Idct VP8ITransform; 137 extern VP8Idct VP8ITransform;
102 extern VP8Fdct VP8FTransform; 138 extern VP8Fdct VP8FTransform;
139 extern VP8Fdct VP8FTransform2; // performs two transforms at a time
103 extern VP8WHT VP8FTransformWHT; 140 extern VP8WHT VP8FTransformWHT;
104 // Predictions 141 // Predictions
105 // *dst is the destination block. *top and *left can be NULL. 142 // *dst is the destination block. *top and *left can be NULL.
106 typedef void (*VP8IntraPreds)(uint8_t *dst, const uint8_t* left, 143 typedef void (*VP8IntraPreds)(uint8_t *dst, const uint8_t* left,
107 const uint8_t* top); 144 const uint8_t* top);
108 typedef void (*VP8Intra4Preds)(uint8_t *dst, const uint8_t* top); 145 typedef void (*VP8Intra4Preds)(uint8_t *dst, const uint8_t* top);
109 extern VP8Intra4Preds VP8EncPredLuma4; 146 extern VP8Intra4Preds VP8EncPredLuma4;
110 extern VP8IntraPreds VP8EncPredLuma16; 147 extern VP8IntraPreds VP8EncPredLuma16;
111 extern VP8IntraPreds VP8EncPredChroma8; 148 extern VP8IntraPreds VP8EncPredChroma8;
112 149
113 typedef int (*VP8Metric)(const uint8_t* pix, const uint8_t* ref); 150 typedef int (*VP8Metric)(const uint8_t* pix, const uint8_t* ref);
114 extern VP8Metric VP8SSE16x16, VP8SSE16x8, VP8SSE8x8, VP8SSE4x4; 151 extern VP8Metric VP8SSE16x16, VP8SSE16x8, VP8SSE8x8, VP8SSE4x4;
115 typedef int (*VP8WMetric)(const uint8_t* pix, const uint8_t* ref, 152 typedef int (*VP8WMetric)(const uint8_t* pix, const uint8_t* ref,
116 const uint16_t* const weights); 153 const uint16_t* const weights);
117 extern VP8WMetric VP8TDisto4x4, VP8TDisto16x16; 154 extern VP8WMetric VP8TDisto4x4, VP8TDisto16x16;
118 155
119 typedef void (*VP8BlockCopy)(const uint8_t* src, uint8_t* dst); 156 typedef void (*VP8BlockCopy)(const uint8_t* src, uint8_t* dst);
120 extern VP8BlockCopy VP8Copy4x4; 157 extern VP8BlockCopy VP8Copy4x4;
158 extern VP8BlockCopy VP8Copy16x8;
121 // Quantization 159 // Quantization
122 struct VP8Matrix; // forward declaration 160 struct VP8Matrix; // forward declaration
123 typedef int (*VP8QuantizeBlock)(int16_t in[16], int16_t out[16], 161 typedef int (*VP8QuantizeBlock)(int16_t in[16], int16_t out[16],
124 const struct VP8Matrix* const mtx); 162 const struct VP8Matrix* const mtx);
163 // Same as VP8QuantizeBlock, but quantizes two consecutive blocks.
164 typedef int (*VP8Quantize2Blocks)(int16_t in[32], int16_t out[32],
165 const struct VP8Matrix* const mtx);
166
125 extern VP8QuantizeBlock VP8EncQuantizeBlock; 167 extern VP8QuantizeBlock VP8EncQuantizeBlock;
168 extern VP8Quantize2Blocks VP8EncQuantize2Blocks;
126 169
127 // specific to 2nd transform: 170 // specific to 2nd transform:
128 typedef int (*VP8QuantizeBlockWHT)(int16_t in[16], int16_t out[16], 171 typedef int (*VP8QuantizeBlockWHT)(int16_t in[16], int16_t out[16],
129 const struct VP8Matrix* const mtx); 172 const struct VP8Matrix* const mtx);
130 extern VP8QuantizeBlockWHT VP8EncQuantizeBlockWHT; 173 extern VP8QuantizeBlockWHT VP8EncQuantizeBlockWHT;
131 174
132 // Collect histogram for susceptibility calculation and accumulate in histo[]. 175 extern const int VP8DspScan[16 + 4 + 4];
133 struct VP8Histogram; 176
177 // Collect histogram for susceptibility calculation.
178 #define MAX_COEFF_THRESH 31 // size of histogram used by CollectHistogram.
179 typedef struct {
180 // We only need to store max_value and last_non_zero, not the distribution.
181 int max_value;
182 int last_non_zero;
183 } VP8Histogram;
134 typedef void (*VP8CHisto)(const uint8_t* ref, const uint8_t* pred, 184 typedef void (*VP8CHisto)(const uint8_t* ref, const uint8_t* pred,
135 int start_block, int end_block, 185 int start_block, int end_block,
136 struct VP8Histogram* const histo); 186 VP8Histogram* const histo);
137 extern const int VP8DspScan[16 + 4 + 4];
138 extern VP8CHisto VP8CollectHistogram; 187 extern VP8CHisto VP8CollectHistogram;
188 // General-purpose util function to help VP8CollectHistogram().
189 void VP8SetHistogramData(const int distribution[MAX_COEFF_THRESH + 1],
190 VP8Histogram* const histo);
139 191
140 void VP8EncDspInit(void); // must be called before using any of the above 192 // must be called before using any of the above
193 void VP8EncDspInit(void);
194
195 //------------------------------------------------------------------------------
196 // cost functions (encoding)
197
198 extern const uint16_t VP8EntropyCost[256]; // 8bit fixed-point log(p)
199 // approximate cost per level:
200 extern const uint16_t VP8LevelFixedCosts[2047 /*MAX_LEVEL*/ + 1];
201 extern const uint8_t VP8EncBands[16 + 1];
202
203 struct VP8Residual;
204 typedef void (*VP8SetResidualCoeffsFunc)(const int16_t* const coeffs,
205 struct VP8Residual* const res);
206 extern VP8SetResidualCoeffsFunc VP8SetResidualCoeffs;
207
208 // Cost calculation function.
209 typedef int (*VP8GetResidualCostFunc)(int ctx0,
210 const struct VP8Residual* const res);
211 extern VP8GetResidualCostFunc VP8GetResidualCost;
212
213 // must be called before anything using the above
214 void VP8EncDspCostInit(void);
141 215
142 //------------------------------------------------------------------------------ 216 //------------------------------------------------------------------------------
143 // Decoding 217 // Decoding
144 218
145 typedef void (*VP8DecIdct)(const int16_t* coeffs, uint8_t* dst); 219 typedef void (*VP8DecIdct)(const int16_t* coeffs, uint8_t* dst);
146 // when doing two transforms, coeffs is actually int16_t[2][16]. 220 // when doing two transforms, coeffs is actually int16_t[2][16].
147 typedef void (*VP8DecIdct2)(const int16_t* coeffs, uint8_t* dst, int do_two); 221 typedef void (*VP8DecIdct2)(const int16_t* coeffs, uint8_t* dst, int do_two);
148 extern VP8DecIdct2 VP8Transform; 222 extern VP8DecIdct2 VP8Transform;
149 extern VP8DecIdct VP8TransformAC3; 223 extern VP8DecIdct VP8TransformAC3;
150 extern VP8DecIdct VP8TransformUV; 224 extern VP8DecIdct VP8TransformUV;
151 extern VP8DecIdct VP8TransformDC; 225 extern VP8DecIdct VP8TransformDC;
152 extern VP8DecIdct VP8TransformDCUV; 226 extern VP8DecIdct VP8TransformDCUV;
153 extern VP8WHT VP8TransformWHT; 227 extern VP8WHT VP8TransformWHT;
154 228
155 // *dst is the destination block, with stride BPS. Boundary samples are 229 // *dst is the destination block, with stride BPS. Boundary samples are
156 // assumed accessible when needed. 230 // assumed accessible when needed.
157 typedef void (*VP8PredFunc)(uint8_t* dst); 231 typedef void (*VP8PredFunc)(uint8_t* dst);
158 extern const VP8PredFunc VP8PredLuma16[/* NUM_B_DC_MODES */]; 232 extern VP8PredFunc VP8PredLuma16[/* NUM_B_DC_MODES */];
159 extern const VP8PredFunc VP8PredChroma8[/* NUM_B_DC_MODES */]; 233 extern VP8PredFunc VP8PredChroma8[/* NUM_B_DC_MODES */];
160 extern const VP8PredFunc VP8PredLuma4[/* NUM_BMODES */]; 234 extern VP8PredFunc VP8PredLuma4[/* NUM_BMODES */];
161 235
162 // clipping tables (for filtering) 236 // clipping tables (for filtering)
163 extern const int8_t* const VP8ksclip1; // clips [-1020, 1020] to [-128, 127] 237 extern const int8_t* const VP8ksclip1; // clips [-1020, 1020] to [-128, 127]
164 extern const int8_t* const VP8ksclip2; // clips [-112, 112] to [-16, 15] 238 extern const int8_t* const VP8ksclip2; // clips [-112, 112] to [-16, 15]
165 extern const uint8_t* const VP8kclip1; // clips [-255,511] to [0,255] 239 extern const uint8_t* const VP8kclip1; // clips [-255,511] to [0,255]
166 extern const uint8_t* const VP8kabs0; // abs(x) for x in [-255,255] 240 extern const uint8_t* const VP8kabs0; // abs(x) for x in [-255,255]
167 void VP8InitClipTables(void); // must be called first 241 // must be called first
242 void VP8InitClipTables(void);
168 243
169 // simple filter (only for luma) 244 // simple filter (only for luma)
170 typedef void (*VP8SimpleFilterFunc)(uint8_t* p, int stride, int thresh); 245 typedef void (*VP8SimpleFilterFunc)(uint8_t* p, int stride, int thresh);
171 extern VP8SimpleFilterFunc VP8SimpleVFilter16; 246 extern VP8SimpleFilterFunc VP8SimpleVFilter16;
172 extern VP8SimpleFilterFunc VP8SimpleHFilter16; 247 extern VP8SimpleFilterFunc VP8SimpleHFilter16;
173 extern VP8SimpleFilterFunc VP8SimpleVFilter16i; // filter 3 inner edges 248 extern VP8SimpleFilterFunc VP8SimpleVFilter16i; // filter 3 inner edges
174 extern VP8SimpleFilterFunc VP8SimpleHFilter16i; 249 extern VP8SimpleFilterFunc VP8SimpleHFilter16i;
175 250
176 // regular filter (on both macroblock edges and inner edges) 251 // regular filter (on both macroblock edges and inner edges)
177 typedef void (*VP8LumaFilterFunc)(uint8_t* luma, int stride, 252 typedef void (*VP8LumaFilterFunc)(uint8_t* luma, int stride,
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 // General function for converting two lines of ARGB or RGBA. 304 // General function for converting two lines of ARGB or RGBA.
230 // 'alpha_is_last' should be true if 0xff000000 is stored in memory as 305 // 'alpha_is_last' should be true if 0xff000000 is stored in memory as
231 // as 0x00, 0x00, 0x00, 0xff (little endian). 306 // as 0x00, 0x00, 0x00, 0xff (little endian).
232 WebPUpsampleLinePairFunc WebPGetLinePairConverter(int alpha_is_last); 307 WebPUpsampleLinePairFunc WebPGetLinePairConverter(int alpha_is_last);
233 308
234 // YUV444->RGB converters 309 // YUV444->RGB converters
235 typedef void (*WebPYUV444Converter)(const uint8_t* y, 310 typedef void (*WebPYUV444Converter)(const uint8_t* y,
236 const uint8_t* u, const uint8_t* v, 311 const uint8_t* u, const uint8_t* v,
237 uint8_t* dst, int len); 312 uint8_t* dst, int len);
238 313
239 extern const WebPYUV444Converter WebPYUV444Converters[/* MODE_LAST */]; 314 extern WebPYUV444Converter WebPYUV444Converters[/* MODE_LAST */];
240 315
241 // Must be called before using the WebPUpsamplers[] (and for premultiplied 316 // Must be called before using the WebPUpsamplers[] (and for premultiplied
242 // colorspaces like rgbA, rgbA4444, etc) 317 // colorspaces like rgbA, rgbA4444, etc)
243 void WebPInitUpsamplers(void); 318 void WebPInitUpsamplers(void);
244 // Must be called before using WebPSamplers[] 319 // Must be called before using WebPSamplers[]
245 void WebPInitSamplers(void); 320 void WebPInitSamplers(void);
321 // Must be called before using WebPYUV444Converters[]
322 void WebPInitYUV444Converters(void);
323
324 //------------------------------------------------------------------------------
325 // ARGB -> YUV converters
326
327 // Convert ARGB samples to luma Y.
328 extern void (*WebPConvertARGBToY)(const uint32_t* argb, uint8_t* y, int width);
329 // Convert ARGB samples to U/V with downsampling. do_store should be '1' for
330 // even lines and '0' for odd ones. 'src_width' is the original width, not
331 // the U/V one.
332 extern void (*WebPConvertARGBToUV)(const uint32_t* argb, uint8_t* u, uint8_t* v,
333 int src_width, int do_store);
334
335 // Convert a row of accumulated (four-values) of rgba32 toward U/V
336 extern void (*WebPConvertRGBA32ToUV)(const uint16_t* rgb,
337 uint8_t* u, uint8_t* v, int width);
338
339 // Convert RGB or BGR to Y
340 extern void (*WebPConvertRGB24ToY)(const uint8_t* rgb, uint8_t* y, int width);
341 extern void (*WebPConvertBGR24ToY)(const uint8_t* bgr, uint8_t* y, int width);
342
343 // used for plain-C fallback.
344 extern void WebPConvertARGBToUV_C(const uint32_t* argb, uint8_t* u, uint8_t* v,
345 int src_width, int do_store);
346 extern void WebPConvertRGBA32ToUV_C(const uint16_t* rgb,
347 uint8_t* u, uint8_t* v, int width);
348
349 // Must be called before using the above.
350 void WebPInitConvertARGBToYUV(void);
351
352 //------------------------------------------------------------------------------
353 // Rescaler
354
355 struct WebPRescaler;
356
357 // Import a row of data and save its contribution in the rescaler.
358 // 'channel' denotes the channel number to be imported. 'Expand' corresponds to
359 // the wrk->x_expand case. Otherwise, 'Shrink' is to be used.
360 typedef void (*WebPRescalerImportRowFunc)(struct WebPRescaler* const wrk,
361 const uint8_t* src);
362
363 extern WebPRescalerImportRowFunc WebPRescalerImportRowExpand;
364 extern WebPRescalerImportRowFunc WebPRescalerImportRowShrink;
365
366 // Export one row (starting at x_out position) from rescaler.
367 // 'Expand' corresponds to the wrk->y_expand case.
368 // Otherwise 'Shrink' is to be used
369 typedef void (*WebPRescalerExportRowFunc)(struct WebPRescaler* const wrk);
370 extern WebPRescalerExportRowFunc WebPRescalerExportRowExpand;
371 extern WebPRescalerExportRowFunc WebPRescalerExportRowShrink;
372
373 // Plain-C implementation, as fall-back.
374 extern void WebPRescalerImportRowExpandC(struct WebPRescaler* const wrk,
375 const uint8_t* src);
376 extern void WebPRescalerImportRowShrinkC(struct WebPRescaler* const wrk,
377 const uint8_t* src);
378 extern void WebPRescalerExportRowExpandC(struct WebPRescaler* const wrk);
379 extern void WebPRescalerExportRowShrinkC(struct WebPRescaler* const wrk);
380
381 // Main entry calls:
382 extern void WebPRescalerImportRow(struct WebPRescaler* const wrk,
383 const uint8_t* src);
384 // Export one row (starting at x_out position) from rescaler.
385 extern void WebPRescalerExportRow(struct WebPRescaler* const wrk);
386
387 // Must be called first before using the above.
388 void WebPRescalerDspInit(void);
246 389
247 //------------------------------------------------------------------------------ 390 //------------------------------------------------------------------------------
248 // Utilities for processing transparent channel. 391 // Utilities for processing transparent channel.
249 392
250 // Apply alpha pre-multiply on an rgba, bgra or argb plane of size w * h. 393 // Apply alpha pre-multiply on an rgba, bgra or argb plane of size w * h.
251 // alpha_first should be 0 for argb, 1 for rgba or bgra (where alpha is last). 394 // alpha_first should be 0 for argb, 1 for rgba or bgra (where alpha is last).
252 extern void (*WebPApplyAlphaMultiply)( 395 extern void (*WebPApplyAlphaMultiply)(
253 uint8_t* rgba, int alpha_first, int w, int h, int stride); 396 uint8_t* rgba, int alpha_first, int w, int h, int stride);
254 397
255 // Same, buf specifically for RGBA4444 format 398 // Same, buf specifically for RGBA4444 format
256 extern void (*WebPApplyAlphaMultiply4444)( 399 extern void (*WebPApplyAlphaMultiply4444)(
257 uint8_t* rgba4444, int w, int h, int stride); 400 uint8_t* rgba4444, int w, int h, int stride);
258 401
402 // Dispatch the values from alpha[] plane to the ARGB destination 'dst'.
403 // Returns true if alpha[] plane has non-trivial values different from 0xff.
404 extern int (*WebPDispatchAlpha)(const uint8_t* alpha, int alpha_stride,
405 int width, int height,
406 uint8_t* dst, int dst_stride);
407
408 // Transfer packed 8b alpha[] values to green channel in dst[], zero'ing the
409 // A/R/B values. 'dst_stride' is the stride for dst[] in uint32_t units.
410 extern void (*WebPDispatchAlphaToGreen)(const uint8_t* alpha, int alpha_stride,
411 int width, int height,
412 uint32_t* dst, int dst_stride);
413
259 // Extract the alpha values from 32b values in argb[] and pack them into alpha[] 414 // Extract the alpha values from 32b values in argb[] and pack them into alpha[]
260 // (this is the opposite of WebPDispatchAlpha). 415 // (this is the opposite of WebPDispatchAlpha).
261 // Returns true if there's only trivial 0xff alpha values. 416 // Returns true if there's only trivial 0xff alpha values.
262 extern int (*WebPExtractAlpha)(const uint8_t* argb, int argb_stride, 417 extern int (*WebPExtractAlpha)(const uint8_t* argb, int argb_stride,
263 int width, int height, 418 int width, int height,
264 uint8_t* alpha, int alpha_stride); 419 uint8_t* alpha, int alpha_stride);
265 420
266 // Pre-Multiply operation transforms x into x * A / 255 (where x=Y,R,G or B). 421 // Pre-Multiply operation transforms x into x * A / 255 (where x=Y,R,G or B).
267 // Un-Multiply operation transforms x into x * 255 / A. 422 // Un-Multiply operation transforms x into x * 255 / A.
268 423
269 // Pre-Multiply or Un-Multiply (if 'inverse' is true) argb values in a row. 424 // Pre-Multiply or Un-Multiply (if 'inverse' is true) argb values in a row.
270 extern void (*WebPMultARGBRow)(uint32_t* const ptr, int width, int inverse); 425 extern void (*WebPMultARGBRow)(uint32_t* const ptr, int width, int inverse);
271 426
272 // Same a WebPMultARGBRow(), but for several rows. 427 // Same a WebPMultARGBRow(), but for several rows.
273 void WebPMultARGBRows(uint8_t* ptr, int stride, int width, int num_rows, 428 void WebPMultARGBRows(uint8_t* ptr, int stride, int width, int num_rows,
274 int inverse); 429 int inverse);
275 430
276 // Same for a row of single values, with side alpha values. 431 // Same for a row of single values, with side alpha values.
277 extern void (*WebPMultRow)(uint8_t* const ptr, const uint8_t* const alpha, 432 extern void (*WebPMultRow)(uint8_t* const ptr, const uint8_t* const alpha,
278 int width, int inverse); 433 int width, int inverse);
279 434
280 // Same a WebPMultRow(), but for several 'num_rows' rows. 435 // Same a WebPMultRow(), but for several 'num_rows' rows.
281 void WebPMultRows(uint8_t* ptr, int stride, 436 void WebPMultRows(uint8_t* ptr, int stride,
282 const uint8_t* alpha, int alpha_stride, 437 const uint8_t* alpha, int alpha_stride,
283 int width, int num_rows, int inverse); 438 int width, int num_rows, int inverse);
284 439
440 // Plain-C versions, used as fallback by some implementations.
441 void WebPMultRowC(uint8_t* const ptr, const uint8_t* const alpha,
442 int width, int inverse);
443 void WebPMultARGBRowC(uint32_t* const ptr, int width, int inverse);
444
285 // To be called first before using the above. 445 // To be called first before using the above.
286 void WebPInitAlphaProcessing(void); 446 void WebPInitAlphaProcessing(void);
287 447
448 // ARGB packing function: a/r/g/b input is rgba or bgra order.
449 extern void (*VP8PackARGB)(const uint8_t* a, const uint8_t* r,
450 const uint8_t* g, const uint8_t* b, int len,
451 uint32_t* out);
452
453 // RGB packing function. 'step' can be 3 or 4. r/g/b input is rgb or bgr order.
454 extern void (*VP8PackRGB)(const uint8_t* r, const uint8_t* g, const uint8_t* b,
455 int len, int step, uint32_t* out);
456
457 // To be called first before using the above.
458 void VP8EncDspARGBInit(void);
459
460 //------------------------------------------------------------------------------
461 // Filter functions
462
463 typedef enum { // Filter types.
464 WEBP_FILTER_NONE = 0,
465 WEBP_FILTER_HORIZONTAL,
466 WEBP_FILTER_VERTICAL,
467 WEBP_FILTER_GRADIENT,
468 WEBP_FILTER_LAST = WEBP_FILTER_GRADIENT + 1, // end marker
469 WEBP_FILTER_BEST, // meta-types
470 WEBP_FILTER_FAST
471 } WEBP_FILTER_TYPE;
472
473 typedef void (*WebPFilterFunc)(const uint8_t* in, int width, int height,
474 int stride, uint8_t* out);
475 typedef void (*WebPUnfilterFunc)(int width, int height, int stride,
476 int row, int num_rows, uint8_t* data);
477
478 // Filter the given data using the given predictor.
479 // 'in' corresponds to a 2-dimensional pixel array of size (stride * height)
480 // in raster order.
481 // 'stride' is number of bytes per scan line (with possible padding).
482 // 'out' should be pre-allocated.
483 extern WebPFilterFunc WebPFilters[WEBP_FILTER_LAST];
484
485 // In-place reconstruct the original data from the given filtered data.
486 // The reconstruction will be done for 'num_rows' rows starting from 'row'
487 // (assuming rows upto 'row - 1' are already reconstructed).
488 extern WebPUnfilterFunc WebPUnfilters[WEBP_FILTER_LAST];
489
490 // To be called first before using the above.
491 void VP8FiltersInit(void);
492
288 #ifdef __cplusplus 493 #ifdef __cplusplus
289 } // extern "C" 494 } // extern "C"
290 #endif 495 #endif
291 496
292 #endif /* WEBP_DSP_DSP_H_ */ 497 #endif /* WEBP_DSP_DSP_H_ */
OLDNEW
« no previous file with comments | « third_party/libwebp/dsp/dec_sse41.c ('k') | third_party/libwebp/dsp/enc.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698