• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2010 Google Inc. All Rights Reserved.
2 //
3 // This code is licensed under the same terms as WebM:
4 //  Software License Agreement:  http://www.webmproject.org/license/software/
5 //  Additional IP Rights Grant:  http://www.webmproject.org/license/additional/
6 // -----------------------------------------------------------------------------
7 //
8 //  Main decoding functions for WebP images.
9 //
10 // Author: Skal (pascal.massimino@gmail.com)
11 
12 #ifndef WEBP_WEBP_DECODE_H_
13 #define WEBP_WEBP_DECODE_H_
14 
15 #include "./types.h"
16 
17 #if defined(__cplusplus) || defined(c_plusplus)
18 extern "C" {
19 #endif
20 
21 #define WEBP_DECODER_ABI_VERSION 0x0200    // MAJOR(8b) + MINOR(8b)
22 
23 typedef struct WebPRGBABuffer WebPRGBABuffer;
24 typedef struct WebPYUVABuffer WebPYUVABuffer;
25 typedef struct WebPDecBuffer WebPDecBuffer;
26 #if !(defined(__cplusplus) || defined(c_plusplus))
27 typedef enum VP8StatusCode VP8StatusCode;
28 typedef enum WEBP_CSP_MODE WEBP_CSP_MODE;
29 #endif
30 typedef struct WebPIDecoder WebPIDecoder;
31 typedef struct WebPBitstreamFeatures WebPBitstreamFeatures;
32 typedef struct WebPDecoderOptions WebPDecoderOptions;
33 typedef struct WebPDecoderConfig WebPDecoderConfig;
34 
35 // Return the decoder's version number, packed in hexadecimal using 8bits for
36 // each of major/minor/revision. E.g: v2.5.7 is 0x020507.
37 WEBP_EXTERN(int) WebPGetDecoderVersion(void);
38 
39 // Retrieve basic header information: width, height.
40 // This function will also validate the header and return 0 in
41 // case of formatting error.
42 // Pointers 'width' and 'height' can be passed NULL if deemed irrelevant.
43 WEBP_EXTERN(int) WebPGetInfo(const uint8_t* data, size_t data_size,
44                              int* width, int* height);
45 
46 // Decodes WebP images pointed to by 'data' and returns RGBA samples, along
47 // with the dimensions in *width and *height. The ordering of samples in
48 // memory is R, G, B, A, R, G, B, A... in scan order (endian-independent).
49 // The returned pointer should be deleted calling free().
50 // Returns NULL in case of error.
51 WEBP_EXTERN(uint8_t*) WebPDecodeRGBA(const uint8_t* data, size_t data_size,
52                                      int* width, int* height);
53 
54 // Same as WebPDecodeRGBA, but returning A, R, G, B, A, R, G, B... ordered data.
55 WEBP_EXTERN(uint8_t*) WebPDecodeARGB(const uint8_t* data, size_t data_size,
56                                      int* width, int* height);
57 
58 // Same as WebPDecodeRGBA, but returning B, G, R, A, B, G, R, A... ordered data.
59 WEBP_EXTERN(uint8_t*) WebPDecodeBGRA(const uint8_t* data, size_t data_size,
60                                      int* width, int* height);
61 
62 // Same as WebPDecodeRGBA, but returning R, G, B, R, G, B... ordered data.
63 // If the bitstream contains transparency, it is ignored.
64 WEBP_EXTERN(uint8_t*) WebPDecodeRGB(const uint8_t* data, size_t data_size,
65                                     int* width, int* height);
66 
67 // Same as WebPDecodeRGB, but returning B, G, R, B, G, R... ordered data.
68 WEBP_EXTERN(uint8_t*) WebPDecodeBGR(const uint8_t* data, size_t data_size,
69                                     int* width, int* height);
70 
71 
72 // Decode WebP images pointed to by 'data' to Y'UV format(*). The pointer
73 // returned is the Y samples buffer. Upon return, *u and *v will point to
74 // the U and V chroma data. These U and V buffers need NOT be free()'d,
75 // unlike the returned Y luma one. The dimension of the U and V planes
76 // are both (*width + 1) / 2 and (*height + 1)/ 2.
77 // Upon return, the Y buffer has a stride returned as '*stride', while U and V
78 // have a common stride returned as '*uv_stride'.
79 // Return NULL in case of error.
80 // (*) Also named Y'CbCr. See: http://en.wikipedia.org/wiki/YCbCr
81 WEBP_EXTERN(uint8_t*) WebPDecodeYUV(const uint8_t* data, size_t data_size,
82                                     int* width, int* height,
83                                     uint8_t** u, uint8_t** v,
84                                     int* stride, int* uv_stride);
85 
86 // These five functions are variants of the above ones, that decode the image
87 // directly into a pre-allocated buffer 'output_buffer'. The maximum storage
88 // available in this buffer is indicated by 'output_buffer_size'. If this
89 // storage is not sufficient (or an error occurred), NULL is returned.
90 // Otherwise, output_buffer is returned, for convenience.
91 // The parameter 'output_stride' specifies the distance (in bytes)
92 // between scanlines. Hence, output_buffer_size is expected to be at least
93 // output_stride x picture-height.
94 WEBP_EXTERN(uint8_t*) WebPDecodeRGBAInto(
95     const uint8_t* data, size_t data_size,
96     uint8_t* output_buffer, size_t output_buffer_size, int output_stride);
97 WEBP_EXTERN(uint8_t*) WebPDecodeARGBInto(
98     const uint8_t* data, size_t data_size,
99     uint8_t* output_buffer, size_t output_buffer_size, int output_stride);
100 WEBP_EXTERN(uint8_t*) WebPDecodeBGRAInto(
101     const uint8_t* data, size_t data_size,
102     uint8_t* output_buffer, size_t output_buffer_size, int output_stride);
103 
104 // RGB and BGR variants. Here too the transparency information, if present,
105 // will be dropped and ignored.
106 WEBP_EXTERN(uint8_t*) WebPDecodeRGBInto(
107     const uint8_t* data, size_t data_size,
108     uint8_t* output_buffer, size_t output_buffer_size, int output_stride);
109 WEBP_EXTERN(uint8_t*) WebPDecodeBGRInto(
110     const uint8_t* data, size_t data_size,
111     uint8_t* output_buffer, size_t output_buffer_size, int output_stride);
112 
113 // WebPDecodeYUVInto() is a variant of WebPDecodeYUV() that operates directly
114 // into pre-allocated luma/chroma plane buffers. This function requires the
115 // strides to be passed: one for the luma plane and one for each of the
116 // chroma ones. The size of each plane buffer is passed as 'luma_size',
117 // 'u_size' and 'v_size' respectively.
118 // Pointer to the luma plane ('*luma') is returned or NULL if an error occurred
119 // during decoding (or because some buffers were found to be too small).
120 WEBP_EXTERN(uint8_t*) WebPDecodeYUVInto(
121     const uint8_t* data, size_t data_size,
122     uint8_t* luma, size_t luma_size, int luma_stride,
123     uint8_t* u, size_t u_size, int u_stride,
124     uint8_t* v, size_t v_size, int v_stride);
125 
126 //------------------------------------------------------------------------------
127 // Output colorspaces and buffer
128 
129 // Colorspaces
130 // Note: the naming describes the byte-ordering of packed samples in memory.
131 // For instance, MODE_BGRA relates to samples ordered as B,G,R,A,B,G,R,A,...
132 // Non-capital names (e.g.:MODE_Argb) relates to pre-multiplied RGB channels.
133 // RGBA-4444 and RGB-565 colorspaces are represented by following byte-order:
134 // RGBA-4444: [r3 r2 r1 r0 g3 g2 g1 g0], [b3 b2 b1 b0 a3 a2 a1 a0], ...
135 // RGB-565: [r4 r3 r2 r1 r0 g5 g4 g3], [g2 g1 g0 b4 b3 b2 b1 b0], ...
136 // In the case WEBP_SWAP_16BITS_CSP is defined, the bytes are swapped for
137 // these two modes:
138 // RGBA-4444: [b3 b2 b1 b0 a3 a2 a1 a0], [r3 r2 r1 r0 g3 g2 g1 g0], ...
139 // RGB-565: [g2 g1 g0 b4 b3 b2 b1 b0], [r4 r3 r2 r1 r0 g5 g4 g3], ...
140 
141 enum WEBP_CSP_MODE {
142   MODE_RGB = 0, MODE_RGBA = 1,
143   MODE_BGR = 2, MODE_BGRA = 3,
144   MODE_ARGB = 4, MODE_RGBA_4444 = 5,
145   MODE_RGB_565 = 6,
146   // RGB-premultiplied transparent modes (alpha value is preserved)
147   MODE_rgbA = 7,
148   MODE_bgrA = 8,
149   MODE_Argb = 9,
150   MODE_rgbA_4444 = 10,
151   // YUV modes must come after RGB ones.
152   MODE_YUV = 11, MODE_YUVA = 12,  // yuv 4:2:0
153   MODE_LAST = 13
154 };
155 
156 // Some useful macros:
WebPIsPremultipliedMode(WEBP_CSP_MODE mode)157 static WEBP_INLINE int WebPIsPremultipliedMode(WEBP_CSP_MODE mode) {
158   return (mode == MODE_rgbA || mode == MODE_bgrA || mode == MODE_Argb ||
159           mode == MODE_rgbA_4444);
160 }
161 
WebPIsAlphaMode(WEBP_CSP_MODE mode)162 static WEBP_INLINE int WebPIsAlphaMode(WEBP_CSP_MODE mode) {
163   return (mode == MODE_RGBA || mode == MODE_BGRA || mode == MODE_ARGB ||
164           mode == MODE_RGBA_4444 || mode == MODE_YUVA ||
165           WebPIsPremultipliedMode(mode));
166 }
167 
WebPIsRGBMode(WEBP_CSP_MODE mode)168 static WEBP_INLINE int WebPIsRGBMode(WEBP_CSP_MODE mode) {
169   return (mode < MODE_YUV);
170 }
171 
172 //------------------------------------------------------------------------------
173 // WebPDecBuffer: Generic structure for describing the output sample buffer.
174 
175 struct WebPRGBABuffer {    // view as RGBA
176   uint8_t* rgba;    // pointer to RGBA samples
177   int stride;       // stride in bytes from one scanline to the next.
178   size_t size;      // total size of the *rgba buffer.
179 };
180 
181 struct WebPYUVABuffer {              // view as YUVA
182   uint8_t* y, *u, *v, *a;     // pointer to luma, chroma U/V, alpha samples
183   int y_stride;               // luma stride
184   int u_stride, v_stride;     // chroma strides
185   int a_stride;               // alpha stride
186   size_t y_size;              // luma plane size
187   size_t u_size, v_size;      // chroma planes size
188   size_t a_size;              // alpha-plane size
189 };
190 
191 // Output buffer
192 struct WebPDecBuffer {
193   WEBP_CSP_MODE colorspace;  // Colorspace.
194   int width, height;         // Dimensions.
195   int is_external_memory;    // If true, 'internal_memory' pointer is not used.
196   union {
197     WebPRGBABuffer RGBA;
198     WebPYUVABuffer YUVA;
199   } u;                       // Nameless union of buffer parameters.
200   uint32_t       pad[4];     // padding for later use
201 
202   uint8_t* private_memory;   // Internally allocated memory (only when
203                              // is_external_memory is false). Should not be used
204                              // externally, but accessed via the buffer union.
205 };
206 
207 // Internal, version-checked, entry point
208 WEBP_EXTERN(int) WebPInitDecBufferInternal(WebPDecBuffer*, int);
209 
210 // Initialize the structure as empty. Must be called before any other use.
211 // Returns false in case of version mismatch
WebPInitDecBuffer(WebPDecBuffer * buffer)212 static WEBP_INLINE int WebPInitDecBuffer(WebPDecBuffer* buffer) {
213   return WebPInitDecBufferInternal(buffer, WEBP_DECODER_ABI_VERSION);
214 }
215 
216 // Free any memory associated with the buffer. Must always be called last.
217 // Note: doesn't free the 'buffer' structure itself.
218 WEBP_EXTERN(void) WebPFreeDecBuffer(WebPDecBuffer* buffer);
219 
220 //------------------------------------------------------------------------------
221 // Enumeration of the status codes
222 
223 enum VP8StatusCode {
224   VP8_STATUS_OK = 0,
225   VP8_STATUS_OUT_OF_MEMORY,
226   VP8_STATUS_INVALID_PARAM,
227   VP8_STATUS_BITSTREAM_ERROR,
228   VP8_STATUS_UNSUPPORTED_FEATURE,
229   VP8_STATUS_SUSPENDED,
230   VP8_STATUS_USER_ABORT,
231   VP8_STATUS_NOT_ENOUGH_DATA
232 };
233 
234 //------------------------------------------------------------------------------
235 // Incremental decoding
236 //
237 // This API allows streamlined decoding of partial data.
238 // Picture can be incrementally decoded as data become available thanks to the
239 // WebPIDecoder object. This object can be left in a SUSPENDED state if the
240 // picture is only partially decoded, pending additional input.
241 // Code example:
242 //
243 //   WebPInitDecBuffer(&buffer);
244 //   buffer.colorspace = mode;
245 //   ...
246 //   WebPIDecoder* idec = WebPINewDecoder(&buffer);
247 //   while (has_more_data) {
248 //     // ... (get additional data)
249 //     status = WebPIAppend(idec, new_data, new_data_size);
250 //     if (status != VP8_STATUS_SUSPENDED ||
251 //       break;
252 //     }
253 //
254 //     // The above call decodes the current available buffer.
255 //     // Part of the image can now be refreshed by calling to
256 //     // WebPIDecGetRGB()/WebPIDecGetYUVA() etc.
257 //   }
258 //   WebPIDelete(idec);
259 
260 // Creates a new incremental decoder with the supplied buffer parameter.
261 // This output_buffer can be passed NULL, in which case a default output buffer
262 // is used (with MODE_RGB). Otherwise, an internal reference to 'output_buffer'
263 // is kept, which means that the lifespan of 'output_buffer' must be larger than
264 // that of the returned WebPIDecoder object.
265 // Returns NULL if the allocation failed.
266 WEBP_EXTERN(WebPIDecoder*) WebPINewDecoder(WebPDecBuffer* output_buffer);
267 
268 // This function allocates and initializes an incremental-decoder object, which
269 // will output the RGB/A samples specified by 'csp' into a preallocated
270 // buffer 'output_buffer'. The size of this buffer is at least
271 // 'output_buffer_size' and the stride (distance in bytes between two scanlines)
272 // is specified by 'output_stride'.
273 // Additionally, output_buffer can be passed NULL in which case the output
274 // buffer will be allocated automatically when the decoding starts. The
275 // colorspace 'csp' is taken into account for allocating this buffer. All other
276 // parameters are ignored.
277 // Returns NULL if the allocation failed, or if some parameters are invalid.
278 WEBP_EXTERN(WebPIDecoder*) WebPINewRGB(
279     WEBP_CSP_MODE csp,
280     uint8_t* output_buffer, size_t output_buffer_size, int output_stride);
281 
282 // This function allocates and initializes an incremental-decoder object, which
283 // will output the raw luma/chroma samples into a preallocated planes if
284 // supplied. The luma plane is specified by its pointer 'luma', its size
285 // 'luma_size' and its stride 'luma_stride'. Similarly, the chroma-u plane
286 // is specified by the 'u', 'u_size' and 'u_stride' parameters, and the chroma-v
287 // plane by 'v' and 'v_size'. And same for the alpha-plane. The 'a' pointer
288 // can be pass NULL in case one is not interested in the transparency plane.
289 // Conversely, 'luma' can be passed NULL if no preallocated planes are supplied.
290 // In this case, the output buffer will be automatically allocated (using
291 // MODE_YUVA) when decoding starts. All parameters are then ignored.
292 // Returns NULL if the allocation failed or if a parameter is invalid.
293 WEBP_EXTERN(WebPIDecoder*) WebPINewYUVA(
294     uint8_t* luma, size_t luma_size, int luma_stride,
295     uint8_t* u, size_t u_size, int u_stride,
296     uint8_t* v, size_t v_size, int v_stride,
297     uint8_t* a, size_t a_size, int a_stride);
298 
299 // Deprecated version of the above, without the alpha plane.
300 // Kept for backward compatibility.
301 WEBP_EXTERN(WebPIDecoder*) WebPINewYUV(
302     uint8_t* luma, size_t luma_size, int luma_stride,
303     uint8_t* u, size_t u_size, int u_stride,
304     uint8_t* v, size_t v_size, int v_stride);
305 
306 // Deletes the WebPIDecoder object and associated memory. Must always be called
307 // if WebPINewDecoder, WebPINewRGB or WebPINewYUV succeeded.
308 WEBP_EXTERN(void) WebPIDelete(WebPIDecoder* idec);
309 
310 // Copies and decodes the next available data. Returns VP8_STATUS_OK when
311 // the image is successfully decoded. Returns VP8_STATUS_SUSPENDED when more
312 // data is expected. Returns error in other cases.
313 WEBP_EXTERN(VP8StatusCode) WebPIAppend(
314     WebPIDecoder* idec, const uint8_t* data, size_t data_size);
315 
316 // A variant of the above function to be used when data buffer contains
317 // partial data from the beginning. In this case data buffer is not copied
318 // to the internal memory.
319 // Note that the value of the 'data' pointer can change between calls to
320 // WebPIUpdate, for instance when the data buffer is resized to fit larger data.
321 WEBP_EXTERN(VP8StatusCode) WebPIUpdate(
322     WebPIDecoder* idec, const uint8_t* data, size_t data_size);
323 
324 // Returns the RGB/A image decoded so far. Returns NULL if output params
325 // are not initialized yet. The RGB/A output type corresponds to the colorspace
326 // specified during call to WebPINewDecoder() or WebPINewRGB().
327 // *last_y is the index of last decoded row in raster scan order. Some pointers
328 // (*last_y, *width etc.) can be NULL if corresponding information is not
329 // needed.
330 WEBP_EXTERN(uint8_t*) WebPIDecGetRGB(
331     const WebPIDecoder* idec, int* last_y,
332     int* width, int* height, int* stride);
333 
334 // Same as above function to get a YUVA image. Returns pointer to the luma
335 // plane or NULL in case of error. If there is no alpha information
336 // the alpha pointer '*a' will be returned NULL.
337 WEBP_EXTERN(uint8_t*) WebPIDecGetYUVA(
338     const WebPIDecoder* idec, int* last_y,
339     uint8_t** u, uint8_t** v, uint8_t** a,
340     int* width, int* height, int* stride, int* uv_stride, int* a_stride);
341 
342 // Deprecated alpha-less version of WebPIDecGetYUVA(): it will ignore the
343 // alpha information (if present). Kept for backward compatibility.
WebPIDecGetYUV(const WebPIDecoder * idec,int * last_y,uint8_t ** u,uint8_t ** v,int * width,int * height,int * stride,int * uv_stride)344 static WEBP_INLINE uint8_t* WebPIDecGetYUV(
345     const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v,
346     int* width, int* height, int* stride, int* uv_stride) {
347   return WebPIDecGetYUVA(idec, last_y, u, v, NULL, width, height,
348                          stride, uv_stride, NULL);
349 }
350 
351 // Generic call to retrieve information about the displayable area.
352 // If non NULL, the left/right/width/height pointers are filled with the visible
353 // rectangular area so far.
354 // Returns NULL in case the incremental decoder object is in an invalid state.
355 // Otherwise returns the pointer to the internal representation. This structure
356 // is read-only, tied to WebPIDecoder's lifespan and should not be modified.
357 WEBP_EXTERN(const WebPDecBuffer*) WebPIDecodedArea(
358     const WebPIDecoder* idec, int* left, int* top, int* width, int* height);
359 
360 //------------------------------------------------------------------------------
361 // Advanced decoding parametrization
362 //
363 //  Code sample for using the advanced decoding API
364 /*
365      // A) Init a configuration object
366      WebPDecoderConfig config;
367      CHECK(WebPInitDecoderConfig(&config));
368 
369      // B) optional: retrieve the bitstream's features.
370      CHECK(WebPGetFeatures(data, data_size, &config.input) == VP8_STATUS_OK);
371 
372      // C) Adjust 'config', if needed
373      config.no_fancy_upsampling = 1;
374      config.output.colorspace = MODE_BGRA;
375      // etc.
376 
377      // Note that you can also make config.output point to an externally
378      // supplied memory buffer, provided it's big enough to store the decoded
379      // picture. Otherwise, config.output will just be used to allocate memory
380      // and store the decoded picture.
381 
382      // D) Decode!
383      CHECK(WebPDecode(data, data_size, &config) == VP8_STATUS_OK);
384 
385      // E) Decoded image is now in config.output (and config.output.u.RGBA)
386 
387      // F) Reclaim memory allocated in config's object. It's safe to call
388      // this function even if the memory is external and wasn't allocated
389      // by WebPDecode().
390      WebPFreeDecBuffer(&config.output);
391 */
392 
393 // Features gathered from the bitstream
394 struct WebPBitstreamFeatures {
395   int width;        // Width in pixels, as read from the bitstream.
396   int height;       // Height in pixels, as read from the bitstream.
397   int has_alpha;    // True if the bitstream contains an alpha channel.
398 
399   // Unused for now:
400   int bitstream_version;        // should be 0 for now. TODO(later)
401   int no_incremental_decoding;  // if true, using incremental decoding is not
402                                 // recommended.
403   int rotate;                   // TODO(later)
404   int uv_sampling;              // should be 0 for now. TODO(later)
405   uint32_t pad[3];              // padding for later use
406 };
407 
408 // Internal, version-checked, entry point
409 WEBP_EXTERN(VP8StatusCode) WebPGetFeaturesInternal(
410     const uint8_t*, size_t, WebPBitstreamFeatures*, int);
411 
412 // Retrieve features from the bitstream. The *features structure is filled
413 // with information gathered from the bitstream.
414 // Returns VP8_STATUS_OK when the features are successfully retrieved. Returns
415 // VP8_STATUS_NOT_ENOUGH_DATA when more data is needed to retrieve the
416 // features from headers. Returns error in other cases.
WebPGetFeatures(const uint8_t * data,size_t data_size,WebPBitstreamFeatures * features)417 static WEBP_INLINE VP8StatusCode WebPGetFeatures(
418     const uint8_t* data, size_t data_size,
419     WebPBitstreamFeatures* features) {
420   return WebPGetFeaturesInternal(data, data_size, features,
421                                  WEBP_DECODER_ABI_VERSION);
422 }
423 
424 // Decoding options
425 struct WebPDecoderOptions {
426   int bypass_filtering;               // if true, skip the in-loop filtering
427   int no_fancy_upsampling;            // if true, use faster pointwise upsampler
428   int use_cropping;                   // if true, cropping is applied _first_
429   int crop_left, crop_top;            // top-left position for cropping.
430                                       // Will be snapped to even values.
431   int crop_width, crop_height;        // dimension of the cropping area
432   int use_scaling;                    // if true, scaling is applied _afterward_
433   int scaled_width, scaled_height;    // final resolution
434   int use_threads;                    // if true, use multi-threaded decoding
435 
436   // Unused for now:
437   int force_rotation;                 // forced rotation (to be applied _last_)
438   int no_enhancement;                 // if true, discard enhancement layer
439   uint32_t pad[6];                    // padding for later use
440 };
441 
442 // Main object storing the configuration for advanced decoding.
443 struct WebPDecoderConfig {
444   WebPBitstreamFeatures input;  // Immutable bitstream features (optional)
445   WebPDecBuffer output;         // Output buffer (can point to external mem)
446   WebPDecoderOptions options;   // Decoding options
447 };
448 
449 // Internal, version-checked, entry point
450 WEBP_EXTERN(int) WebPInitDecoderConfigInternal(WebPDecoderConfig*, int);
451 
452 // Initialize the configuration as empty. This function must always be
453 // called first, unless WebPGetFeatures() is to be called.
454 // Returns false in case of mismatched version.
WebPInitDecoderConfig(WebPDecoderConfig * config)455 static WEBP_INLINE int WebPInitDecoderConfig(WebPDecoderConfig* config) {
456   return WebPInitDecoderConfigInternal(config, WEBP_DECODER_ABI_VERSION);
457 }
458 
459 // Instantiate a new incremental decoder object with the requested
460 // configuration. The bitstream can be passed using 'data' and 'data_size'
461 // parameter, in which case the features will be parsed and stored into
462 // config->input. Otherwise, 'data' can be NULL and no parsing will occur.
463 // Note that 'config' can be NULL too, in which case a default configuration
464 // is used.
465 // The return WebPIDecoder object must always be deleted calling WebPIDelete().
466 // Returns NULL in case of error (and config->status will then reflect
467 // the error condition).
468 WEBP_EXTERN(WebPIDecoder*) WebPIDecode(const uint8_t* data, size_t data_size,
469                                        WebPDecoderConfig* config);
470 
471 // Non-incremental version. This version decodes the full data at once, taking
472 // 'config' into account. Returns decoding status (which should be VP8_STATUS_OK
473 // if the decoding was successful).
474 WEBP_EXTERN(VP8StatusCode) WebPDecode(const uint8_t* data, size_t data_size,
475                                       WebPDecoderConfig* config);
476 
477 #if defined(__cplusplus) || defined(c_plusplus)
478 }    // extern "C"
479 #endif
480 
481 #endif  /* WEBP_WEBP_DECODE_H_ */
482