2012-12-06 22:48:21 +01:00
|
|
|
// Copyright 2012 Google Inc. All Rights Reserved.
|
|
|
|
//
|
2013-06-07 08:05:58 +02:00
|
|
|
// Use of this source code is governed by a BSD-style license
|
|
|
|
// that can be found in the COPYING file in the root of the source
|
|
|
|
// tree. An additional intellectual property rights grant can be found
|
|
|
|
// in the file PATENTS. All contributing project authors may
|
|
|
|
// be found in the AUTHORS file in the root of the source tree.
|
2012-12-06 22:48:21 +01:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// JPEG decode.
|
|
|
|
|
2016-07-20 01:02:55 +02:00
|
|
|
#ifndef WEBP_IMAGEIO_JPEGDEC_H_
|
|
|
|
#define WEBP_IMAGEIO_JPEGDEC_H_
|
2012-12-06 22:48:21 +01:00
|
|
|
|
|
|
|
#include "webp/types.h"
|
|
|
|
|
2013-11-25 23:43:12 +01:00
|
|
|
#ifdef __cplusplus
|
2012-12-06 22:48:21 +01:00
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-12-17 04:13:56 +01:00
|
|
|
struct Metadata;
|
2012-12-06 22:48:21 +01:00
|
|
|
struct WebPPicture;
|
|
|
|
|
2015-12-08 08:22:41 +01:00
|
|
|
// Reads a JPEG from 'data', returning the decoded output in 'pic'.
|
2015-10-27 22:54:11 +01:00
|
|
|
// The output is RGB or YUV depending on pic->use_argb value.
|
2012-12-06 22:48:21 +01:00
|
|
|
// Returns true on success.
|
2016-06-01 20:55:29 +02:00
|
|
|
// 'keep_alpha' has no effect, but is kept for coherence with other signatures
|
|
|
|
// for image readers.
|
2015-12-08 08:22:41 +01:00
|
|
|
int ReadJPEG(const uint8_t* const data, size_t data_size,
|
2016-06-01 20:55:29 +02:00
|
|
|
struct WebPPicture* const pic, int keep_alpha,
|
|
|
|
struct Metadata* const metadata);
|
2012-12-06 22:48:21 +01:00
|
|
|
|
2013-11-25 23:43:12 +01:00
|
|
|
#ifdef __cplusplus
|
2012-12-06 22:48:21 +01:00
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
2016-07-20 01:02:55 +02:00
|
|
|
#endif // WEBP_IMAGEIO_JPEGDEC_H_
|