2011-02-19 08:33:46 +01:00
|
|
|
// Copyright 2011 Google Inc.
|
|
|
|
//
|
|
|
|
// This code is licensed under the same terms as WebM:
|
|
|
|
// Software License Agreement: http://www.webmproject.org/license/software/
|
|
|
|
// Additional IP Rights Grant: http://www.webmproject.org/license/additional/
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// WebPPicture utils: colorspace conversion, crop, ...
|
|
|
|
//
|
|
|
|
// Author: Skal (pascal.massimino@gmail.com)
|
|
|
|
|
2011-04-26 16:23:57 +02:00
|
|
|
#include <assert.h>
|
2011-02-19 08:33:46 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include "vp8enci.h"
|
|
|
|
|
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2011-11-23 23:17:40 +01:00
|
|
|
#define HALVE(x) (((x) + 1) >> 1)
|
|
|
|
|
2011-08-25 23:22:32 +02:00
|
|
|
//------------------------------------------------------------------------------
|
2011-02-19 08:33:46 +01:00
|
|
|
// WebPPicture
|
2011-08-25 23:22:32 +02:00
|
|
|
//------------------------------------------------------------------------------
|
2011-02-19 08:33:46 +01:00
|
|
|
|
|
|
|
int WebPPictureAlloc(WebPPicture* const picture) {
|
|
|
|
if (picture) {
|
2011-05-03 02:19:00 +02:00
|
|
|
const WebPEncCSP uv_csp = picture->colorspace & WEBP_CSP_UV_MASK;
|
|
|
|
const int has_alpha = picture->colorspace & WEBP_CSP_ALPHA_BIT;
|
2011-02-19 08:33:46 +01:00
|
|
|
const int width = picture->width;
|
|
|
|
const int height = picture->height;
|
2011-05-03 02:19:00 +02:00
|
|
|
const int y_stride = width;
|
2011-11-23 23:17:40 +01:00
|
|
|
const int uv_width = HALVE(width);
|
|
|
|
const int uv_height = HALVE(height);
|
2011-05-03 02:19:00 +02:00
|
|
|
const int uv_stride = uv_width;
|
|
|
|
int uv0_stride = 0;
|
|
|
|
int a_width, a_stride;
|
|
|
|
uint64_t y_size, uv_size, uv0_size, a_size, total_size;
|
|
|
|
uint8_t* mem;
|
|
|
|
|
|
|
|
// U/V
|
|
|
|
switch (uv_csp) {
|
|
|
|
case WEBP_YUV420:
|
|
|
|
break;
|
|
|
|
#ifdef WEBP_EXPERIMENTAL_FEATURES
|
|
|
|
case WEBP_YUV400: // for now, we'll just reset the U/V samples
|
|
|
|
break;
|
|
|
|
case WEBP_YUV422:
|
|
|
|
uv0_stride = uv_width;
|
|
|
|
break;
|
|
|
|
case WEBP_YUV444:
|
|
|
|
uv0_stride = width;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
uv0_size = height * uv0_stride;
|
|
|
|
|
|
|
|
// alpha
|
|
|
|
a_width = has_alpha ? width : 0;
|
|
|
|
a_stride = a_width;
|
|
|
|
y_size = (uint64_t)y_stride * height;
|
|
|
|
uv_size = (uint64_t)uv_stride * uv_height;
|
|
|
|
a_size = (uint64_t)a_stride * height;
|
|
|
|
|
|
|
|
total_size = y_size + a_size + 2 * uv_size + 2 * uv0_size;
|
|
|
|
|
2011-02-27 19:31:20 +01:00
|
|
|
// Security and validation checks
|
2011-05-03 02:19:00 +02:00
|
|
|
if (width <= 0 || height <= 0 || // check for luma/alpha param error
|
|
|
|
uv_width < 0 || uv_height < 0 || // check for u/v param error
|
2011-02-27 19:31:20 +01:00
|
|
|
y_size >= (1ULL << 40) || // check for reasonable global size
|
|
|
|
(size_t)total_size != total_size) { // check for overflow on 32bit
|
|
|
|
return 0;
|
|
|
|
}
|
2011-05-03 02:19:00 +02:00
|
|
|
picture->y_stride = y_stride;
|
|
|
|
picture->uv_stride = uv_stride;
|
|
|
|
picture->a_stride = a_stride;
|
|
|
|
picture->uv0_stride = uv0_stride;
|
2011-02-19 08:33:46 +01:00
|
|
|
WebPPictureFree(picture); // erase previous buffer
|
2011-05-03 02:19:00 +02:00
|
|
|
mem = (uint8_t*)malloc((size_t)total_size);
|
|
|
|
if (mem == NULL) return 0;
|
2011-02-19 08:33:46 +01:00
|
|
|
|
2011-05-03 02:19:00 +02:00
|
|
|
picture->y = mem;
|
|
|
|
mem += y_size;
|
|
|
|
|
|
|
|
picture->u = mem;
|
|
|
|
mem += uv_size;
|
|
|
|
picture->v = mem;
|
|
|
|
mem += uv_size;
|
|
|
|
|
|
|
|
if (a_size) {
|
|
|
|
picture->a = mem;
|
|
|
|
mem += a_size;
|
|
|
|
}
|
|
|
|
if (uv0_size) {
|
|
|
|
picture->u0 = mem;
|
|
|
|
mem += uv0_size;
|
|
|
|
picture->v0 = mem;
|
|
|
|
mem += uv0_size;
|
EXPERIMENTAL: add support for alpha channel
This is a (minor) bitstream change: if the 'color_space' bit is set to '1'
(which is normally an undefined/invalid behaviour), we add extra data at the
end of partition #0 (so-called 'extensions')
Namely, we add the size of the extension data as 3 bytes (little-endian),
followed by a set of bits telling which extensions we're incorporating.
The data then _preceeds_ this trailing tags.
This is all experimental, and you'll need to have
'#define WEBP_EXPERIMENTAL_FEATURES' in webp/types.h to enable this code
(at your own risk! :))
Still, this hack produces almost-valid WebP file for decoders that don't
check this color_space bit. In particular, previous 'dwebp' (and for instance
Chrome) will recognize this files and decode them, but without the alpha
of course. Other decoder will just see random extra stuff at the end of
partition #0.
To experiment with the alpha-channel, you need to compile on Unix platform
and use PNGs for input/output.
If 'alpha.png' is a source with alpha channel, then you can try (on Unix):
cwebp alpha.png -o alpha.webp
dwebp alpha.webp -o test.png
cwebp now has a '-noalpha' flag to ignore any alpha information from the
source, if present.
More hacking and experimenting welcome!
Change-Id: I3c7b1fd8411c9e7a9f77690e898479ad85c52f3e
2011-04-26 01:58:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-05-03 02:19:00 +02:00
|
|
|
// Grab the 'specs' (writer, *opaque, width, height...) from 'src' and copy them
|
|
|
|
// into 'dst'. Mark 'dst' as not owning any memory. 'src' can be NULL.
|
|
|
|
static void WebPPictureGrabSpecs(const WebPPicture* const src,
|
|
|
|
WebPPicture* const dst) {
|
|
|
|
if (src) *dst = *src;
|
|
|
|
dst->y = dst->u = dst->v = NULL;
|
|
|
|
dst->u0 = dst->v0 = NULL;
|
|
|
|
dst->a = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Release memory owned by 'picture'.
|
2011-02-19 08:33:46 +01:00
|
|
|
void WebPPictureFree(WebPPicture* const picture) {
|
|
|
|
if (picture) {
|
|
|
|
free(picture->y);
|
2011-05-03 02:19:00 +02:00
|
|
|
WebPPictureGrabSpecs(NULL, picture);
|
2011-02-19 08:33:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-25 23:22:32 +02:00
|
|
|
//------------------------------------------------------------------------------
|
2011-05-03 02:19:00 +02:00
|
|
|
// Picture copying
|
2011-02-19 08:33:46 +01:00
|
|
|
|
2011-11-23 23:17:40 +01:00
|
|
|
// TODO(skal): move to dsp/ ?
|
|
|
|
static void CopyPlane(const uint8_t* src, int src_stride,
|
|
|
|
uint8_t* dst, int dst_stride, int width, int height) {
|
|
|
|
while (height-- > 0) {
|
|
|
|
memcpy(dst, src, width);
|
|
|
|
src += src_stride;
|
|
|
|
dst += dst_stride;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-19 08:33:46 +01:00
|
|
|
int WebPPictureCopy(const WebPPicture* const src, WebPPicture* const dst) {
|
|
|
|
if (src == NULL || dst == NULL) return 0;
|
|
|
|
if (src == dst) return 1;
|
2011-05-03 02:19:00 +02:00
|
|
|
|
|
|
|
WebPPictureGrabSpecs(src, dst);
|
2011-02-19 08:33:46 +01:00
|
|
|
if (!WebPPictureAlloc(dst)) return 0;
|
2011-05-03 02:19:00 +02:00
|
|
|
|
2011-11-23 23:17:40 +01:00
|
|
|
CopyPlane(src->y, src->y_stride,
|
|
|
|
dst->y, dst->y_stride, dst->width, dst->height);
|
|
|
|
CopyPlane(src->u, src->uv_stride,
|
|
|
|
dst->u, dst->uv_stride, HALVE(dst->width), HALVE(dst->height));
|
|
|
|
CopyPlane(src->v, src->uv_stride,
|
|
|
|
dst->v, dst->uv_stride, HALVE(dst->width), HALVE(dst->height));
|
2011-05-03 02:19:00 +02:00
|
|
|
if (dst->a != NULL) {
|
2011-11-23 23:17:40 +01:00
|
|
|
CopyPlane(src->a, src->a_stride,
|
|
|
|
dst->a, dst->a_stride, dst->width, dst->height);
|
2011-05-03 02:19:00 +02:00
|
|
|
}
|
2011-12-01 07:44:15 +01:00
|
|
|
#ifdef WEBP_EXPERIMENTAL_FEATURES
|
2011-05-03 02:19:00 +02:00
|
|
|
if (dst->u0 != NULL) {
|
|
|
|
int uv0_width = src->width;
|
|
|
|
if ((dst->colorspace & WEBP_CSP_UV_MASK) == WEBP_YUV422) {
|
2011-11-23 23:17:40 +01:00
|
|
|
uv0_width = HALVE(uv0_width);
|
2011-05-03 02:19:00 +02:00
|
|
|
}
|
2011-11-23 23:17:40 +01:00
|
|
|
CopyPlane(src->u0, src->uv0_stride,
|
|
|
|
dst->u0, dst->uv0_stride, uv0_width, dst->height);
|
|
|
|
CopyPlane(src->v0, src->uv0_stride,
|
|
|
|
dst->v0, dst->uv0_stride, uv0_width, dst->height);
|
2011-05-03 02:19:00 +02:00
|
|
|
}
|
|
|
|
#endif
|
2011-02-19 08:33:46 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-08-25 23:22:32 +02:00
|
|
|
//------------------------------------------------------------------------------
|
2011-05-03 02:19:00 +02:00
|
|
|
// Picture cropping
|
|
|
|
|
2011-02-19 08:33:46 +01:00
|
|
|
int WebPPictureCrop(WebPPicture* const pic,
|
|
|
|
int left, int top, int width, int height) {
|
|
|
|
WebPPicture tmp;
|
|
|
|
|
|
|
|
if (pic == NULL) return 0;
|
|
|
|
if (width <= 0 || height <= 0) return 0;
|
|
|
|
if (left < 0 || ((left + width + 1) & ~1) > pic->width) return 0;
|
|
|
|
if (top < 0 || ((top + height + 1) & ~1) > pic->height) return 0;
|
|
|
|
|
2011-05-03 02:19:00 +02:00
|
|
|
WebPPictureGrabSpecs(pic, &tmp);
|
2011-02-19 08:33:46 +01:00
|
|
|
tmp.width = width;
|
|
|
|
tmp.height = height;
|
|
|
|
if (!WebPPictureAlloc(&tmp)) return 0;
|
|
|
|
|
2011-11-23 23:17:40 +01:00
|
|
|
{
|
|
|
|
const int y_offset = top * pic->y_stride + left;
|
|
|
|
const int uv_offset = (top / 2) * pic->uv_stride + left / 2;
|
|
|
|
CopyPlane(pic->y + y_offset, pic->y_stride,
|
|
|
|
tmp.y, tmp.y_stride, width, height);
|
|
|
|
CopyPlane(pic->u + uv_offset, pic->uv_stride,
|
|
|
|
tmp.u, tmp.uv_stride, HALVE(width), HALVE(height));
|
|
|
|
CopyPlane(pic->v + uv_offset, pic->uv_stride,
|
|
|
|
tmp.v, tmp.uv_stride, HALVE(width), HALVE(height));
|
2011-02-19 08:33:46 +01:00
|
|
|
}
|
2011-05-03 02:19:00 +02:00
|
|
|
|
|
|
|
if (tmp.a) {
|
2011-11-23 23:17:40 +01:00
|
|
|
const int a_offset = top * pic->a_stride + left;
|
|
|
|
CopyPlane(pic->a + a_offset, pic->a_stride,
|
|
|
|
tmp.a, tmp.a_stride, width, height);
|
2011-05-03 02:19:00 +02:00
|
|
|
}
|
2011-12-01 07:44:15 +01:00
|
|
|
#ifdef WEBP_EXPERIMENTAL_FEATURES
|
2011-05-03 02:19:00 +02:00
|
|
|
if (tmp.u0) {
|
|
|
|
int w = width;
|
|
|
|
int l = left;
|
|
|
|
if (tmp.colorspace == WEBP_YUV422) {
|
2011-11-23 23:17:40 +01:00
|
|
|
w = HALVE(w);
|
|
|
|
l = HALVE(l);
|
2011-05-03 02:19:00 +02:00
|
|
|
}
|
2011-11-23 23:17:40 +01:00
|
|
|
CopyPlane(pic->u0 + top * pic->uv0_stride + l, pic->uv0_stride,
|
|
|
|
tmp.u0, tmp.uv0_stride, w, l);
|
|
|
|
CopyPlane(pic->v0 + top * pic->uv0_stride + l, pic->uv0_stride,
|
|
|
|
tmp.v0, tmp.uv0_stride, w, l);
|
2011-05-03 02:19:00 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
WebPPictureFree(pic);
|
|
|
|
*pic = tmp;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-08-25 23:22:32 +02:00
|
|
|
//------------------------------------------------------------------------------
|
2011-05-03 02:19:00 +02:00
|
|
|
// Simple picture rescaler
|
|
|
|
|
2011-05-17 02:11:32 +02:00
|
|
|
#define RFIX 30
|
2011-05-03 02:19:00 +02:00
|
|
|
#define MULT(x,y) (((int64_t)(x) * (y) + (1 << (RFIX - 1))) >> RFIX)
|
2011-11-05 03:44:57 +01:00
|
|
|
static WEBP_INLINE void ImportRow(const uint8_t* src, int src_width,
|
|
|
|
int32_t* frow, int32_t* irow, int dst_width) {
|
2011-05-03 02:19:00 +02:00
|
|
|
const int x_expand = (src_width < dst_width);
|
|
|
|
const int fx_scale = (1 << RFIX) / dst_width;
|
|
|
|
int x_in = 0;
|
|
|
|
int x_out;
|
|
|
|
int x_accum = 0;
|
|
|
|
if (!x_expand) {
|
|
|
|
int sum = 0;
|
|
|
|
for (x_out = 0; x_out < dst_width; ++x_out) {
|
|
|
|
x_accum += src_width - dst_width;
|
|
|
|
for (; x_accum > 0; x_accum -= dst_width) {
|
|
|
|
sum += src[x_in++];
|
|
|
|
}
|
|
|
|
{ // Emit next horizontal pixel.
|
|
|
|
const int32_t base = src[x_in++];
|
|
|
|
const int32_t frac = base * (-x_accum);
|
|
|
|
frow[x_out] = (sum + base) * dst_width - frac;
|
2011-06-21 00:38:14 +02:00
|
|
|
sum = MULT(frac, fx_scale); // fresh fractional start for next pixel
|
2011-05-03 02:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else { // simple bilinear interpolation
|
|
|
|
int left = src[0], right = src[0];
|
|
|
|
for (x_out = 0; x_out < dst_width; ++x_out) {
|
|
|
|
if (x_accum < 0) {
|
|
|
|
left = right;
|
|
|
|
right = src[++x_in];
|
|
|
|
x_accum += dst_width - 1;
|
|
|
|
}
|
|
|
|
frow[x_out] = right * (dst_width - 1) + (left - right) * x_accum;
|
|
|
|
x_accum -= src_width - 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Accumulate the new row's contribution
|
|
|
|
for (x_out = 0; x_out < dst_width; ++x_out) {
|
|
|
|
irow[x_out] += frow[x_out];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ExportRow(int32_t* frow, int32_t* irow, uint8_t* dst, int dst_width,
|
2011-05-17 02:11:32 +02:00
|
|
|
const int yscale, const int64_t fxy_scale) {
|
2011-05-03 02:19:00 +02:00
|
|
|
int x_out;
|
|
|
|
for (x_out = 0; x_out < dst_width; ++x_out) {
|
|
|
|
const int frac = MULT(frow[x_out], yscale);
|
2011-06-28 16:02:56 +02:00
|
|
|
const int v = (int)(MULT(irow[x_out] - frac, fxy_scale));
|
2011-05-03 02:19:00 +02:00
|
|
|
dst[x_out] = (!(v & ~0xff)) ? v : (v < 0) ? 0 : 255;
|
|
|
|
irow[x_out] = frac; // new fractional start
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void RescalePlane(const uint8_t* src,
|
|
|
|
int src_width, int src_height, int src_stride,
|
|
|
|
uint8_t* dst,
|
|
|
|
int dst_width, int dst_height, int dst_stride,
|
|
|
|
int32_t* const work) {
|
|
|
|
const int x_expand = (src_width < dst_width);
|
|
|
|
const int fy_scale = (1 << RFIX) / dst_height;
|
2011-05-17 02:11:32 +02:00
|
|
|
const int64_t fxy_scale = x_expand ?
|
2011-05-03 02:19:00 +02:00
|
|
|
((int64_t)dst_height << RFIX) / (dst_width * src_height) :
|
|
|
|
((int64_t)dst_height << RFIX) / (src_width * src_height);
|
|
|
|
int y_accum = src_height;
|
|
|
|
int y;
|
|
|
|
int32_t* irow = work; // integral contribution
|
|
|
|
int32_t* frow = work + dst_width; // fractional contribution
|
|
|
|
|
|
|
|
memset(work, 0, 2 * dst_width * sizeof(*work));
|
|
|
|
for (y = 0; y < src_height; ++y) {
|
|
|
|
// import new contribution of one source row.
|
|
|
|
ImportRow(src, src_width, frow, irow, dst_width);
|
|
|
|
src += src_stride;
|
|
|
|
// emit output row(s)
|
|
|
|
y_accum -= dst_height;
|
|
|
|
for (; y_accum <= 0; y_accum += src_height) {
|
|
|
|
const int yscale = fy_scale * (-y_accum);
|
|
|
|
ExportRow(frow, irow, dst, dst_width, yscale, fxy_scale);
|
|
|
|
dst += dst_stride;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#undef MULT
|
|
|
|
#undef RFIX
|
|
|
|
|
|
|
|
int WebPPictureRescale(WebPPicture* const pic, int width, int height) {
|
|
|
|
WebPPicture tmp;
|
|
|
|
int prev_width, prev_height;
|
|
|
|
int32_t* work;
|
|
|
|
|
|
|
|
if (pic == NULL) return 0;
|
|
|
|
prev_width = pic->width;
|
|
|
|
prev_height = pic->height;
|
|
|
|
// if width is unspecified, scale original proportionally to height ratio.
|
|
|
|
if (width == 0) {
|
|
|
|
width = (prev_width * height + prev_height / 2) / prev_height;
|
|
|
|
}
|
|
|
|
// if height is unspecified, scale original proportionally to width ratio.
|
|
|
|
if (height == 0) {
|
|
|
|
height = (prev_height * width + prev_width / 2) / prev_width;
|
|
|
|
}
|
|
|
|
// Check if the overall dimensions still make sense.
|
|
|
|
if (width <= 0 || height <= 0) return 0;
|
|
|
|
|
|
|
|
WebPPictureGrabSpecs(pic, &tmp);
|
|
|
|
tmp.width = width;
|
|
|
|
tmp.height = height;
|
|
|
|
if (!WebPPictureAlloc(&tmp)) return 0;
|
|
|
|
|
|
|
|
work = malloc(2 * width * sizeof(int32_t));
|
|
|
|
if (work == NULL) {
|
|
|
|
WebPPictureFree(&tmp);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
RescalePlane(pic->y, prev_width, prev_height, pic->y_stride,
|
|
|
|
tmp.y, width, height, tmp.y_stride, work);
|
|
|
|
RescalePlane(pic->u,
|
2011-11-23 23:17:40 +01:00
|
|
|
HALVE(prev_width), HALVE(prev_height), pic->uv_stride,
|
2011-05-03 02:19:00 +02:00
|
|
|
tmp.u,
|
2011-11-23 23:17:40 +01:00
|
|
|
HALVE(width), HALVE(height), tmp.uv_stride, work);
|
2011-05-03 02:19:00 +02:00
|
|
|
RescalePlane(pic->v,
|
2011-11-23 23:17:40 +01:00
|
|
|
HALVE(prev_width), HALVE(prev_height), pic->uv_stride,
|
2011-05-03 02:19:00 +02:00
|
|
|
tmp.v,
|
2011-11-23 23:17:40 +01:00
|
|
|
HALVE(width), HALVE(height), tmp.uv_stride, work);
|
2011-05-03 02:19:00 +02:00
|
|
|
|
|
|
|
if (tmp.a) {
|
|
|
|
RescalePlane(pic->a, prev_width, prev_height, pic->a_stride,
|
|
|
|
tmp.a, width, height, tmp.a_stride, work);
|
|
|
|
}
|
2011-12-01 07:44:15 +01:00
|
|
|
#ifdef WEBP_EXPERIMENTAL_FEATURES
|
2011-05-03 02:19:00 +02:00
|
|
|
if (tmp.u0) {
|
|
|
|
int s = 1;
|
|
|
|
if ((tmp.colorspace & WEBP_CSP_UV_MASK) == WEBP_YUV422) {
|
|
|
|
s = 2;
|
|
|
|
}
|
|
|
|
RescalePlane(
|
|
|
|
pic->u0, (prev_width + s / 2) / s, prev_height, pic->uv0_stride,
|
|
|
|
tmp.u0, (width + s / 2) / s, height, tmp.uv0_stride, work);
|
|
|
|
RescalePlane(
|
|
|
|
pic->v0, (prev_width + s / 2) / s, prev_height, pic->uv0_stride,
|
|
|
|
tmp.v0, (width + s / 2) / s, height, tmp.uv0_stride, work);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-02-19 08:33:46 +01:00
|
|
|
WebPPictureFree(pic);
|
2011-05-03 02:19:00 +02:00
|
|
|
free(work);
|
2011-02-19 08:33:46 +01:00
|
|
|
*pic = tmp;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-08-25 23:22:32 +02:00
|
|
|
//------------------------------------------------------------------------------
|
2011-02-19 08:33:46 +01:00
|
|
|
// Write-to-memory
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint8_t** mem;
|
|
|
|
size_t max_size;
|
|
|
|
size_t* size;
|
|
|
|
} WebPMemoryWriter;
|
|
|
|
|
|
|
|
static void InitMemoryWriter(WebPMemoryWriter* const writer) {
|
|
|
|
*writer->mem = NULL;
|
|
|
|
*writer->size = 0;
|
|
|
|
writer->max_size = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int WebPMemoryWrite(const uint8_t* data, size_t data_size,
|
|
|
|
const WebPPicture* const picture) {
|
|
|
|
WebPMemoryWriter* const w = (WebPMemoryWriter*)picture->custom_ptr;
|
|
|
|
size_t next_size;
|
|
|
|
if (w == NULL) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
next_size = (*w->size) + data_size;
|
|
|
|
if (next_size > w->max_size) {
|
|
|
|
uint8_t* new_mem;
|
|
|
|
size_t next_max_size = w->max_size * 2;
|
|
|
|
if (next_max_size < next_size) next_max_size = next_size;
|
|
|
|
if (next_max_size < 8192) next_max_size = 8192;
|
|
|
|
new_mem = (uint8_t*)malloc(next_max_size);
|
|
|
|
if (new_mem == NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if ((*w->size) > 0) {
|
|
|
|
memcpy(new_mem, *w->mem, *w->size);
|
|
|
|
}
|
|
|
|
free(*w->mem);
|
|
|
|
*w->mem = new_mem;
|
|
|
|
w->max_size = next_max_size;
|
|
|
|
}
|
|
|
|
if (data_size) {
|
|
|
|
memcpy((*w->mem) + (*w->size), data, data_size);
|
|
|
|
*w->size += data_size;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-08-25 23:22:32 +02:00
|
|
|
//------------------------------------------------------------------------------
|
2011-02-19 08:33:46 +01:00
|
|
|
// RGB -> YUV conversion
|
|
|
|
// The exact naming is Y'CbCr, following the ITU-R BT.601 standard.
|
|
|
|
// More information at: http://en.wikipedia.org/wiki/YCbCr
|
|
|
|
// Y = 0.2569 * R + 0.5044 * G + 0.0979 * B + 16
|
|
|
|
// U = -0.1483 * R - 0.2911 * G + 0.4394 * B + 128
|
|
|
|
// V = 0.4394 * R - 0.3679 * G - 0.0715 * B + 128
|
|
|
|
// We use 16bit fixed point operations.
|
|
|
|
|
|
|
|
enum { YUV_FRAC = 16 };
|
|
|
|
|
2011-11-05 03:44:57 +01:00
|
|
|
static WEBP_INLINE int clip_uv(int v) {
|
2011-02-19 08:33:46 +01:00
|
|
|
v = (v + (257 << (YUV_FRAC + 2 - 1))) >> (YUV_FRAC + 2);
|
2011-03-25 23:04:11 +01:00
|
|
|
return ((v & ~0xff) == 0) ? v : (v < 0) ? 0 : 255;
|
2011-02-19 08:33:46 +01:00
|
|
|
}
|
|
|
|
|
2011-11-05 03:44:57 +01:00
|
|
|
static WEBP_INLINE int rgb_to_y(int r, int g, int b) {
|
2011-02-19 08:33:46 +01:00
|
|
|
const int kRound = (1 << (YUV_FRAC - 1)) + (16 << YUV_FRAC);
|
|
|
|
const int luma = 16839 * r + 33059 * g + 6420 * b;
|
|
|
|
return (luma + kRound) >> YUV_FRAC; // no need to clip
|
|
|
|
}
|
|
|
|
|
2011-11-05 03:44:57 +01:00
|
|
|
static WEBP_INLINE int rgb_to_u(int r, int g, int b) {
|
2011-02-19 08:33:46 +01:00
|
|
|
return clip_uv(-9719 * r - 19081 * g + 28800 * b);
|
|
|
|
}
|
|
|
|
|
2011-11-05 03:44:57 +01:00
|
|
|
static WEBP_INLINE int rgb_to_v(int r, int g, int b) {
|
2011-02-19 08:33:46 +01:00
|
|
|
return clip_uv(+28800 * r - 24116 * g - 4684 * b);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: we can do better than simply 2x2 averaging on U/V samples.
|
|
|
|
#define SUM4(ptr) ((ptr)[0] + (ptr)[step] + \
|
|
|
|
(ptr)[rgb_stride] + (ptr)[rgb_stride + step])
|
|
|
|
#define SUM2H(ptr) (2 * (ptr)[0] + 2 * (ptr)[step])
|
|
|
|
#define SUM2V(ptr) (2 * (ptr)[0] + 2 * (ptr)[rgb_stride])
|
|
|
|
#define SUM1(ptr) (4 * (ptr)[0])
|
|
|
|
#define RGB_TO_UV(x, y, SUM) { \
|
|
|
|
const int src = (2 * (step * (x) + (y) * rgb_stride)); \
|
|
|
|
const int dst = (x) + (y) * picture->uv_stride; \
|
|
|
|
const int r = SUM(r_ptr + src); \
|
|
|
|
const int g = SUM(g_ptr + src); \
|
|
|
|
const int b = SUM(b_ptr + src); \
|
|
|
|
picture->u[dst] = rgb_to_u(r, g, b); \
|
|
|
|
picture->v[dst] = rgb_to_v(r, g, b); \
|
|
|
|
}
|
|
|
|
|
2011-05-03 02:19:00 +02:00
|
|
|
#define RGB_TO_UV0(x_in, x_out, y, SUM) { \
|
|
|
|
const int src = (step * (x_in) + (y) * rgb_stride); \
|
|
|
|
const int dst = (x_out) + (y) * picture->uv0_stride; \
|
|
|
|
const int r = SUM(r_ptr + src); \
|
|
|
|
const int g = SUM(g_ptr + src); \
|
|
|
|
const int b = SUM(b_ptr + src); \
|
|
|
|
picture->u0[dst] = rgb_to_u(r, g, b); \
|
|
|
|
picture->v0[dst] = rgb_to_v(r, g, b); \
|
|
|
|
}
|
|
|
|
|
|
|
|
static void MakeGray(WebPPicture* const picture) {
|
|
|
|
int y;
|
2011-11-23 23:17:40 +01:00
|
|
|
const int uv_width = HALVE(picture->width);
|
|
|
|
const int uv_height = HALVE(picture->height);
|
|
|
|
for (y = 0; y < uv_height; ++y) {
|
2011-05-03 02:19:00 +02:00
|
|
|
memset(picture->u + y * picture->uv_stride, 128, uv_width);
|
|
|
|
memset(picture->v + y * picture->uv_stride, 128, uv_width);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-19 08:33:46 +01:00
|
|
|
static int Import(WebPPicture* const picture,
|
|
|
|
const uint8_t* const rgb, int rgb_stride,
|
2011-04-29 00:55:35 +02:00
|
|
|
int step, int swap_rb, int import_alpha) {
|
2011-05-03 02:19:00 +02:00
|
|
|
const WebPEncCSP uv_csp = picture->colorspace & WEBP_CSP_UV_MASK;
|
2011-02-19 08:33:46 +01:00
|
|
|
int x, y;
|
2011-04-29 00:55:35 +02:00
|
|
|
const uint8_t* const r_ptr = rgb + (swap_rb ? 2 : 0);
|
2011-02-19 08:33:46 +01:00
|
|
|
const uint8_t* const g_ptr = rgb + 1;
|
2011-04-29 00:55:35 +02:00
|
|
|
const uint8_t* const b_ptr = rgb + (swap_rb ? 0 : 2);
|
2011-05-03 02:19:00 +02:00
|
|
|
const int width = picture->width;
|
|
|
|
const int height = picture->height;
|
2011-02-19 08:33:46 +01:00
|
|
|
|
2011-05-03 02:19:00 +02:00
|
|
|
// Import luma plane
|
|
|
|
for (y = 0; y < height; ++y) {
|
|
|
|
for (x = 0; x < width; ++x) {
|
2011-02-19 08:33:46 +01:00
|
|
|
const int offset = step * x + y * rgb_stride;
|
|
|
|
picture->y[x + y * picture->y_stride] =
|
|
|
|
rgb_to_y(r_ptr[offset], g_ptr[offset], b_ptr[offset]);
|
|
|
|
}
|
|
|
|
}
|
2011-05-03 02:19:00 +02:00
|
|
|
|
|
|
|
// Downsample U/V plane
|
|
|
|
if (uv_csp != WEBP_YUV400) {
|
|
|
|
for (y = 0; y < (height >> 1); ++y) {
|
|
|
|
for (x = 0; x < (width >> 1); ++x) {
|
|
|
|
RGB_TO_UV(x, y, SUM4);
|
|
|
|
}
|
|
|
|
if (picture->width & 1) {
|
|
|
|
RGB_TO_UV(x, y, SUM2V);
|
|
|
|
}
|
2011-02-19 08:33:46 +01:00
|
|
|
}
|
2011-05-03 02:19:00 +02:00
|
|
|
if (height & 1) {
|
|
|
|
for (x = 0; x < (width >> 1); ++x) {
|
|
|
|
RGB_TO_UV(x, y, SUM2H);
|
|
|
|
}
|
|
|
|
if (width & 1) {
|
|
|
|
RGB_TO_UV(x, y, SUM1);
|
|
|
|
}
|
2011-02-19 08:33:46 +01:00
|
|
|
}
|
2011-05-03 02:19:00 +02:00
|
|
|
|
|
|
|
#ifdef WEBP_EXPERIMENTAL_FEATURES
|
|
|
|
// Store original U/V samples too
|
|
|
|
if (uv_csp == WEBP_YUV422) {
|
|
|
|
for (y = 0; y < height; ++y) {
|
|
|
|
for (x = 0; x < (width >> 1); ++x) {
|
|
|
|
RGB_TO_UV0(2 * x, x, y, SUM2H);
|
|
|
|
}
|
|
|
|
if (width & 1) {
|
|
|
|
RGB_TO_UV0(2 * x, x, y, SUM1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (uv_csp == WEBP_YUV444) {
|
|
|
|
for (y = 0; y < height; ++y) {
|
|
|
|
for (x = 0; x < width; ++x) {
|
|
|
|
RGB_TO_UV0(x, x, y, SUM1);
|
|
|
|
}
|
|
|
|
}
|
2011-02-19 08:33:46 +01:00
|
|
|
}
|
2011-05-03 02:19:00 +02:00
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
MakeGray(picture);
|
2011-02-19 08:33:46 +01:00
|
|
|
}
|
2011-05-03 02:19:00 +02:00
|
|
|
|
2011-04-26 16:23:57 +02:00
|
|
|
if (import_alpha) {
|
2011-05-03 02:19:00 +02:00
|
|
|
const uint8_t* const a_ptr = rgb + 3;
|
2011-04-26 16:23:57 +02:00
|
|
|
assert(step >= 4);
|
2011-05-03 02:19:00 +02:00
|
|
|
for (y = 0; y < height; ++y) {
|
|
|
|
for (x = 0; x < width; ++x) {
|
2011-04-26 16:23:57 +02:00
|
|
|
picture->a[x + y * picture->a_stride] =
|
|
|
|
a_ptr[step * x + y * rgb_stride];
|
EXPERIMENTAL: add support for alpha channel
This is a (minor) bitstream change: if the 'color_space' bit is set to '1'
(which is normally an undefined/invalid behaviour), we add extra data at the
end of partition #0 (so-called 'extensions')
Namely, we add the size of the extension data as 3 bytes (little-endian),
followed by a set of bits telling which extensions we're incorporating.
The data then _preceeds_ this trailing tags.
This is all experimental, and you'll need to have
'#define WEBP_EXPERIMENTAL_FEATURES' in webp/types.h to enable this code
(at your own risk! :))
Still, this hack produces almost-valid WebP file for decoders that don't
check this color_space bit. In particular, previous 'dwebp' (and for instance
Chrome) will recognize this files and decode them, but without the alpha
of course. Other decoder will just see random extra stuff at the end of
partition #0.
To experiment with the alpha-channel, you need to compile on Unix platform
and use PNGs for input/output.
If 'alpha.png' is a source with alpha channel, then you can try (on Unix):
cwebp alpha.png -o alpha.webp
dwebp alpha.webp -o test.png
cwebp now has a '-noalpha' flag to ignore any alpha information from the
source, if present.
More hacking and experimenting welcome!
Change-Id: I3c7b1fd8411c9e7a9f77690e898479ad85c52f3e
2011-04-26 01:58:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-02-19 08:33:46 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#undef SUM4
|
|
|
|
#undef SUM2V
|
|
|
|
#undef SUM2H
|
|
|
|
#undef SUM1
|
|
|
|
#undef RGB_TO_UV
|
|
|
|
|
|
|
|
int WebPPictureImportRGB(WebPPicture* const picture,
|
|
|
|
const uint8_t* const rgb, int rgb_stride) {
|
2011-05-03 02:19:00 +02:00
|
|
|
picture->colorspace &= ~WEBP_CSP_ALPHA_BIT;
|
2011-02-19 08:33:46 +01:00
|
|
|
if (!WebPPictureAlloc(picture)) return 0;
|
2011-04-26 16:23:57 +02:00
|
|
|
return Import(picture, rgb, rgb_stride, 3, 0, 0);
|
2011-02-19 08:33:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int WebPPictureImportBGR(WebPPicture* const picture,
|
|
|
|
const uint8_t* const rgb, int rgb_stride) {
|
2011-05-03 02:19:00 +02:00
|
|
|
picture->colorspace &= ~WEBP_CSP_ALPHA_BIT;
|
2011-02-19 08:33:46 +01:00
|
|
|
if (!WebPPictureAlloc(picture)) return 0;
|
2011-04-26 16:23:57 +02:00
|
|
|
return Import(picture, rgb, rgb_stride, 3, 1, 0);
|
2011-02-19 08:33:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int WebPPictureImportRGBA(WebPPicture* const picture,
|
|
|
|
const uint8_t* const rgba, int rgba_stride) {
|
2011-05-03 02:19:00 +02:00
|
|
|
picture->colorspace |= WEBP_CSP_ALPHA_BIT;
|
2011-02-19 08:33:46 +01:00
|
|
|
if (!WebPPictureAlloc(picture)) return 0;
|
2011-04-26 16:23:57 +02:00
|
|
|
return Import(picture, rgba, rgba_stride, 4, 0, 1);
|
2011-02-19 08:33:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int WebPPictureImportBGRA(WebPPicture* const picture,
|
|
|
|
const uint8_t* const rgba, int rgba_stride) {
|
2011-05-03 02:19:00 +02:00
|
|
|
picture->colorspace |= WEBP_CSP_ALPHA_BIT;
|
2011-02-19 08:33:46 +01:00
|
|
|
if (!WebPPictureAlloc(picture)) return 0;
|
2011-04-26 16:23:57 +02:00
|
|
|
return Import(picture, rgba, rgba_stride, 4, 1, 1);
|
2011-02-19 08:33:46 +01:00
|
|
|
}
|
|
|
|
|
2011-08-25 23:22:32 +02:00
|
|
|
//------------------------------------------------------------------------------
|
2011-02-19 08:33:46 +01:00
|
|
|
// Simplest call:
|
|
|
|
|
|
|
|
typedef int (*Importer)(WebPPicture* const, const uint8_t* const, int);
|
|
|
|
|
EXPERIMENTAL: add support for alpha channel
This is a (minor) bitstream change: if the 'color_space' bit is set to '1'
(which is normally an undefined/invalid behaviour), we add extra data at the
end of partition #0 (so-called 'extensions')
Namely, we add the size of the extension data as 3 bytes (little-endian),
followed by a set of bits telling which extensions we're incorporating.
The data then _preceeds_ this trailing tags.
This is all experimental, and you'll need to have
'#define WEBP_EXPERIMENTAL_FEATURES' in webp/types.h to enable this code
(at your own risk! :))
Still, this hack produces almost-valid WebP file for decoders that don't
check this color_space bit. In particular, previous 'dwebp' (and for instance
Chrome) will recognize this files and decode them, but without the alpha
of course. Other decoder will just see random extra stuff at the end of
partition #0.
To experiment with the alpha-channel, you need to compile on Unix platform
and use PNGs for input/output.
If 'alpha.png' is a source with alpha channel, then you can try (on Unix):
cwebp alpha.png -o alpha.webp
dwebp alpha.webp -o test.png
cwebp now has a '-noalpha' flag to ignore any alpha information from the
source, if present.
More hacking and experimenting welcome!
Change-Id: I3c7b1fd8411c9e7a9f77690e898479ad85c52f3e
2011-04-26 01:58:04 +02:00
|
|
|
static size_t Encode(const uint8_t* rgba, int width, int height, int stride,
|
2011-02-19 08:33:46 +01:00
|
|
|
Importer import, float quality_factor, uint8_t** output) {
|
|
|
|
size_t output_size = 0;
|
|
|
|
WebPPicture pic;
|
|
|
|
WebPConfig config;
|
|
|
|
WebPMemoryWriter wrt;
|
|
|
|
int ok;
|
|
|
|
|
|
|
|
if (!WebPConfigPreset(&config, WEBP_PRESET_DEFAULT, quality_factor) ||
|
|
|
|
!WebPPictureInit(&pic)) {
|
|
|
|
return 0; // shouldn't happen, except if system installation is broken
|
|
|
|
}
|
|
|
|
|
|
|
|
pic.width = width;
|
|
|
|
pic.height = height;
|
|
|
|
pic.writer = WebPMemoryWrite;
|
|
|
|
pic.custom_ptr = &wrt;
|
|
|
|
|
|
|
|
wrt.mem = output;
|
|
|
|
wrt.size = &output_size;
|
|
|
|
InitMemoryWriter(&wrt);
|
|
|
|
|
EXPERIMENTAL: add support for alpha channel
This is a (minor) bitstream change: if the 'color_space' bit is set to '1'
(which is normally an undefined/invalid behaviour), we add extra data at the
end of partition #0 (so-called 'extensions')
Namely, we add the size of the extension data as 3 bytes (little-endian),
followed by a set of bits telling which extensions we're incorporating.
The data then _preceeds_ this trailing tags.
This is all experimental, and you'll need to have
'#define WEBP_EXPERIMENTAL_FEATURES' in webp/types.h to enable this code
(at your own risk! :))
Still, this hack produces almost-valid WebP file for decoders that don't
check this color_space bit. In particular, previous 'dwebp' (and for instance
Chrome) will recognize this files and decode them, but without the alpha
of course. Other decoder will just see random extra stuff at the end of
partition #0.
To experiment with the alpha-channel, you need to compile on Unix platform
and use PNGs for input/output.
If 'alpha.png' is a source with alpha channel, then you can try (on Unix):
cwebp alpha.png -o alpha.webp
dwebp alpha.webp -o test.png
cwebp now has a '-noalpha' flag to ignore any alpha information from the
source, if present.
More hacking and experimenting welcome!
Change-Id: I3c7b1fd8411c9e7a9f77690e898479ad85c52f3e
2011-04-26 01:58:04 +02:00
|
|
|
ok = import(&pic, rgba, stride) && WebPEncode(&config, &pic);
|
2011-02-19 08:33:46 +01:00
|
|
|
WebPPictureFree(&pic);
|
|
|
|
if (!ok) {
|
|
|
|
free(*output);
|
|
|
|
*output = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return output_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define ENCODE_FUNC(NAME, IMPORTER) \
|
|
|
|
size_t NAME(const uint8_t* in, int w, int h, int bps, float q, \
|
|
|
|
uint8_t** out) { \
|
|
|
|
return Encode(in, w, h, bps, IMPORTER, q, out); \
|
|
|
|
}
|
|
|
|
|
|
|
|
ENCODE_FUNC(WebPEncodeRGB, WebPPictureImportRGB);
|
|
|
|
ENCODE_FUNC(WebPEncodeBGR, WebPPictureImportBGR);
|
|
|
|
ENCODE_FUNC(WebPEncodeRGBA, WebPPictureImportRGBA);
|
|
|
|
ENCODE_FUNC(WebPEncodeBGRA, WebPPictureImportBGRA);
|
|
|
|
|
|
|
|
#undef ENCODE_FUNC
|
|
|
|
|
2011-08-25 23:22:32 +02:00
|
|
|
//------------------------------------------------------------------------------
|
2011-02-19 08:33:46 +01:00
|
|
|
|
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|