2012-05-26 02:11:02 +02:00
|
|
|
<!--
|
|
|
|
|
|
|
|
Although you may be viewing an alternate representation, this document
|
|
|
|
is sourced in Markdown, a light-duty markup scheme, and is optimized for
|
2021-11-17 20:16:58 +01:00
|
|
|
the [kramdown](https://kramdown.gettalong.org/) transformer.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2022-02-14 12:19:52 +01:00
|
|
|
See the accompanying specs_generation.md. External link targets are referenced
|
|
|
|
at the end of this file.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
-->
|
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
Specification for WebP Lossless Bitstream
|
2012-06-14 21:03:55 +02:00
|
|
|
=========================================
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-07-11 22:46:00 +02:00
|
|
|
_Jyrki Alakuijala, Ph.D., Google, Inc., 2012-06-19_
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2014-09-18 08:21:02 +02:00
|
|
|
Paragraphs marked as \[AMENDED\] were amended on 2014-09-16.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2022-03-25 03:36:30 +01:00
|
|
|
Paragraphs marked as \[AMENDED2\] were amended on 2022-05-13.
|
|
|
|
|
2012-05-26 02:11:02 +02:00
|
|
|
Abstract
|
|
|
|
--------
|
|
|
|
|
2012-06-15 00:59:26 +02:00
|
|
|
WebP lossless is an image format for lossless compression of ARGB
|
|
|
|
images. The lossless format stores and restores the pixel values
|
|
|
|
exactly, including the color values for zero alpha pixels. The
|
2012-05-26 02:11:02 +02:00
|
|
|
format uses subresolution images, recursively embedded into the format
|
2012-06-15 00:59:26 +02:00
|
|
|
itself, for storing statistical data about the images, such as the used
|
|
|
|
entropy codes, spatial predictors, color space conversion, and color
|
2022-06-16 19:46:18 +02:00
|
|
|
table. LZ77, prefix coding, and a color cache are used for compression
|
2012-06-15 00:59:26 +02:00
|
|
|
of the bulk data. Decoding speeds faster than PNG have been
|
2012-06-15 02:13:15 +02:00
|
|
|
demonstrated, as well as 25% denser compression than can be achieved
|
|
|
|
using today's PNG format.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
* TOC placeholder
|
|
|
|
{:toc}
|
|
|
|
|
|
|
|
|
|
|
|
Nomenclature
|
|
|
|
------------
|
|
|
|
|
|
|
|
ARGB
|
|
|
|
: A pixel value consisting of alpha, red, green, and blue values.
|
|
|
|
|
|
|
|
ARGB image
|
|
|
|
: A two-dimensional array containing ARGB pixels.
|
|
|
|
|
|
|
|
color cache
|
2012-06-15 02:13:15 +02:00
|
|
|
: A small hash-addressed array to store recently used colors, to be able
|
|
|
|
to recall them with shorter codes.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
color indexing image
|
2012-06-15 02:13:15 +02:00
|
|
|
: A one-dimensional image of colors that can be indexed using a small
|
|
|
|
integer (up to 256 within WebP lossless).
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
color transform image
|
2012-06-15 02:13:15 +02:00
|
|
|
: A two-dimensional subresolution image containing data about
|
|
|
|
correlations of color components.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
distance mapping
|
2012-06-15 02:13:15 +02:00
|
|
|
: Changes LZ77 distances to have the smallest values for pixels in 2D
|
|
|
|
proximity.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
entropy image
|
2012-06-15 02:13:15 +02:00
|
|
|
: A two-dimensional subresolution image indicating which entropy coding
|
|
|
|
should be used in a respective square in the image, i.e., each pixel
|
2022-06-16 19:46:18 +02:00
|
|
|
is a meta prefix code.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
prefix code
|
2012-06-15 02:13:15 +02:00
|
|
|
: A classic way to do entropy coding where a smaller number of bits are
|
|
|
|
used for more frequent codes.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
LZ77
|
|
|
|
: Dictionary-based sliding window compression algorithm that either
|
|
|
|
emits symbols or describes them as sequences of past symbols.
|
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
meta prefix code
|
2012-06-15 02:13:15 +02:00
|
|
|
: A small integer (up to 16 bits) that indexes an element in the meta
|
2022-06-16 19:46:18 +02:00
|
|
|
prefix table.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
predictor image
|
2012-06-15 02:13:15 +02:00
|
|
|
: A two-dimensional subresolution image indicating which spatial
|
|
|
|
predictor is used for a particular square in the image.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
prefix coding
|
2012-06-15 02:13:15 +02:00
|
|
|
: A way to entropy code larger integers that codes a few bits of the
|
|
|
|
integer using an entropy code and codifies the remaining bits raw.
|
|
|
|
This allows for the descriptions of the entropy codes to remain
|
2012-05-26 02:11:02 +02:00
|
|
|
relatively small even when the range of symbols is large.
|
|
|
|
|
|
|
|
scan-line order
|
2012-06-15 02:13:15 +02:00
|
|
|
: A processing order of pixels, left-to-right, top-to-bottom, starting
|
|
|
|
from the left-hand-top pixel, proceeding to the right. Once a row is
|
|
|
|
completed, continue from the left-hand column of the next row.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
|
2012-06-15 00:59:26 +02:00
|
|
|
1 Introduction
|
|
|
|
--------------
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
This document describes the compressed data representation of a WebP
|
|
|
|
lossless image. It is intended as a detailed reference for WebP lossless
|
|
|
|
encoder and decoder implementation.
|
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
In this document, we extensively use C programming language syntax to
|
|
|
|
describe the bitstream, and assume the existence of a function for
|
|
|
|
reading bits, `ReadBits(n)`. The bytes are read in the natural order of
|
|
|
|
the stream containing them, and bits of each byte are read in
|
|
|
|
least-significant-bit-first order. When multiple bits are read at the
|
|
|
|
same time, the integer is constructed from the original data in the
|
|
|
|
original order. The most significant bits of the returned integer are
|
|
|
|
also the most significant bits of the original data. Thus the statement
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
b = ReadBits(2);
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
is equivalent with the two statements below:
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2012-06-15 02:13:15 +02:00
|
|
|
b = ReadBits(1);
|
2012-05-26 02:11:02 +02:00
|
|
|
b |= ReadBits(1) << 1;
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
We assume that each color component (e.g. alpha, red, blue and green) is
|
2012-06-15 00:14:14 +02:00
|
|
|
represented using an 8-bit byte. We define the corresponding type as
|
|
|
|
uint8. A whole ARGB pixel is represented by a type called uint32, an
|
|
|
|
unsigned integer consisting of 32 bits. In the code showing the behavior
|
|
|
|
of the transformations, alpha value is codified in bits 31..24, red in
|
|
|
|
bits 23..16, green in bits 15..8 and blue in bits 7..0, but
|
|
|
|
implementations of the format are free to use another representation
|
|
|
|
internally.
|
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
Broadly, a WebP lossless image contains header data, transform
|
2012-06-15 00:14:14 +02:00
|
|
|
information and actual image data. Headers contain width and height of
|
2012-07-02 22:31:09 +02:00
|
|
|
the image. A WebP lossless image can go through four different types of
|
2012-06-15 00:14:14 +02:00
|
|
|
transformation before being entropy encoded. The transform information
|
2012-06-15 02:13:15 +02:00
|
|
|
in the bitstream contains the data required to apply the respective
|
2012-06-15 00:14:14 +02:00
|
|
|
inverse transforms.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
|
2012-06-15 00:59:26 +02:00
|
|
|
2 RIFF Header
|
|
|
|
-------------
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
The beginning of the header has the RIFF container. This consists of the
|
2012-05-26 02:11:02 +02:00
|
|
|
following 21 bytes:
|
|
|
|
|
2012-05-31 22:04:19 +02:00
|
|
|
1. String "RIFF"
|
2012-06-15 00:14:14 +02:00
|
|
|
2. A little-endian 32 bit value of the block length, the whole size
|
|
|
|
of the block controlled by the RIFF header. Normally this equals
|
2012-06-15 02:13:15 +02:00
|
|
|
the payload size (file size minus 8 bytes: 4 bytes for the 'RIFF'
|
|
|
|
identifier and 4 bytes for storing the value itself).
|
2012-05-31 22:04:19 +02:00
|
|
|
3. String "WEBP" (RIFF container name).
|
|
|
|
4. String "VP8L" (chunk tag for lossless encoded image data).
|
2012-06-15 00:14:14 +02:00
|
|
|
5. A little-endian 32-bit value of the number of bytes in the
|
|
|
|
lossless stream.
|
2012-06-15 02:13:15 +02:00
|
|
|
6. One byte signature 0x2f.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
The first 28 bits of the bitstream specify the width and height of the
|
2012-06-15 00:14:14 +02:00
|
|
|
image. Width and height are decoded as 14-bit integers as follows:
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
int image_width = ReadBits(14) + 1;
|
|
|
|
int image_height = ReadBits(14) + 1;
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
The 14-bit dynamics for image size limit the maximum size of a WebP
|
|
|
|
lossless image to 16384✕16384 pixels.
|
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
The alpha_is_used bit is a hint only, and should not impact decoding.
|
|
|
|
It should be set to 0 when all alpha values are 255 in the picture, and
|
|
|
|
1 otherwise.
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
int alpha_is_used = ReadBits(1);
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2014-09-18 08:21:02 +02:00
|
|
|
The version_number is a 3 bit code that must be set to 0. Any other value
|
|
|
|
should be treated as an error. \[AMENDED\]
|
2012-06-15 02:13:15 +02:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
int version_number = ReadBits(3);
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-06-15 00:59:26 +02:00
|
|
|
3 Transformations
|
|
|
|
-----------------
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
Transformations are reversible manipulations of the image data that can
|
|
|
|
reduce the remaining symbolic entropy by modeling spatial and color
|
|
|
|
correlations. Transformations can make the final compression more dense.
|
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
An image can go through four types of transformation. A 1 bit indicates
|
|
|
|
the presence of a transform. Each transform is allowed to be used only
|
|
|
|
once. The transformations are used only for the main level ARGB image:
|
2012-06-15 00:14:14 +02:00
|
|
|
the subresolution images have no transforms, not even the 0 bit
|
|
|
|
indicating the end-of-transforms.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
Typically an encoder would use these transforms to reduce the Shannon
|
|
|
|
entropy in the residual image. Also, the transform data can be decided
|
|
|
|
based on entropy minimization.
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
while (ReadBits(1)) { // Transform present.
|
|
|
|
// Decode transform type.
|
|
|
|
enum TransformType transform_type = ReadBits(2);
|
|
|
|
// Decode transform data.
|
|
|
|
...
|
|
|
|
}
|
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
// Decode actual image data (Section 4).
|
2012-05-26 02:11:02 +02:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
If a transform is present then the next two bits specify the transform
|
|
|
|
type. There are four types of transforms.
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
enum TransformType {
|
|
|
|
PREDICTOR_TRANSFORM = 0,
|
|
|
|
COLOR_TRANSFORM = 1,
|
|
|
|
SUBTRACT_GREEN = 2,
|
|
|
|
COLOR_INDEXING_TRANSFORM = 3,
|
|
|
|
};
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
The transform type is followed by the transform data. Transform data
|
2012-06-15 02:13:15 +02:00
|
|
|
contains the information required to apply the inverse transform and
|
2012-05-26 02:11:02 +02:00
|
|
|
depends on the transform type. Next we describe the transform data for
|
|
|
|
different types.
|
|
|
|
|
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
### Predictor Transform
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-06-14 21:57:02 +02:00
|
|
|
The predictor transform can be used to reduce entropy by exploiting the
|
|
|
|
fact that neighboring pixels are often correlated. In the predictor
|
|
|
|
transform, the current pixel value is predicted from the pixels already
|
|
|
|
decoded (in scan-line order) and only the residual value (actual -
|
|
|
|
predicted) is encoded. The _prediction mode_ determines the type of
|
|
|
|
prediction to use. We divide the image into squares and all the pixels
|
2022-03-11 22:09:27 +01:00
|
|
|
in a square use the same prediction mode.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-12-05 09:01:28 +01:00
|
|
|
The first 3 bits of prediction data define the block width and height in
|
2012-06-15 02:13:15 +02:00
|
|
|
number of bits. The number of block columns, `block_xsize`, is used in
|
2012-05-26 02:11:02 +02:00
|
|
|
indexing two-dimensionally.
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2012-06-15 02:13:15 +02:00
|
|
|
int size_bits = ReadBits(3) + 2;
|
2012-05-26 02:11:02 +02:00
|
|
|
int block_width = (1 << size_bits);
|
|
|
|
int block_height = (1 << size_bits);
|
|
|
|
#define DIV_ROUND_UP(num, den) ((num) + (den) - 1) / (den))
|
|
|
|
int block_xsize = DIV_ROUND_UP(image_width, 1 << size_bits);
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
The transform data contains the prediction mode for each block of the
|
2012-06-14 21:57:02 +02:00
|
|
|
image. All the `block_width * block_height` pixels of a block use same
|
|
|
|
prediction mode. The prediction modes are treated as pixels of an image
|
2012-06-15 02:13:15 +02:00
|
|
|
and encoded using the same techniques described in
|
|
|
|
[Chapter 4](#image-data).
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-06-14 21:57:02 +02:00
|
|
|
For a pixel _x, y_, one can compute the respective filter block address
|
|
|
|
by:
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
int block_index = (y >> size_bits) * block_xsize +
|
|
|
|
(x >> size_bits);
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
There are 14 different prediction modes. In each prediction mode, the
|
2012-06-15 00:14:14 +02:00
|
|
|
current pixel value is predicted from one or more neighboring pixels
|
|
|
|
whose values are already known.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
We choose the neighboring pixels (TL, T, TR, and L) of the current pixel
|
|
|
|
(P) as follows:
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
O O O O O O O O O O O
|
|
|
|
O O O O O O O O O O O
|
|
|
|
O O O O TL T TR O O O O
|
|
|
|
O O O O L P X X X X X
|
|
|
|
X X X X X X X X X X X
|
|
|
|
X X X X X X X X X X X
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
where TL means top-left, T top, TR top-right, L left pixel.
|
2012-06-15 00:14:14 +02:00
|
|
|
At the time of predicting a value for P, all pixels O, TL, T, TR and L
|
|
|
|
have been already processed, and pixel P and all pixels X are unknown.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
Given the above neighboring pixels, the different prediction modes are
|
|
|
|
defined as follows.
|
|
|
|
|
|
|
|
| Mode | Predicted value of each channel of the current pixel |
|
|
|
|
| ------ | ------------------------------------------------------- |
|
|
|
|
| 0 | 0xff000000 (represents solid black color in ARGB) |
|
|
|
|
| 1 | L |
|
|
|
|
| 2 | T |
|
|
|
|
| 3 | TR |
|
|
|
|
| 4 | TL |
|
|
|
|
| 5 | Average2(Average2(L, TR), T) |
|
|
|
|
| 6 | Average2(L, TL) |
|
|
|
|
| 7 | Average2(L, T) |
|
|
|
|
| 8 | Average2(TL, T) |
|
|
|
|
| 9 | Average2(T, TR) |
|
|
|
|
| 10 | Average2(Average2(L, TL), Average2(T, TR)) |
|
|
|
|
| 11 | Select(L, T, TL) |
|
2012-06-15 02:13:15 +02:00
|
|
|
| 12 | ClampAddSubtractFull(L, T, TL) |
|
|
|
|
| 13 | ClampAddSubtractHalf(Average2(L, T), TL) |
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
|
2012-06-14 21:57:02 +02:00
|
|
|
`Average2` is defined as follows for each ARGB component:
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
uint8 Average2(uint8 a, uint8 b) {
|
|
|
|
return (a + b) / 2;
|
|
|
|
}
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
The Select predictor is defined as follows:
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
uint32 Select(uint32 L, uint32 T, uint32 TL) {
|
|
|
|
// L = left pixel, T = top pixel, TL = top left pixel.
|
|
|
|
|
|
|
|
// ARGB component estimates for prediction.
|
|
|
|
int pAlpha = ALPHA(L) + ALPHA(T) - ALPHA(TL);
|
|
|
|
int pRed = RED(L) + RED(T) - RED(TL);
|
|
|
|
int pGreen = GREEN(L) + GREEN(T) - GREEN(TL);
|
|
|
|
int pBlue = BLUE(L) + BLUE(T) - BLUE(TL);
|
|
|
|
|
|
|
|
// Manhattan distances to estimates for left and top pixels.
|
|
|
|
int pL = abs(pAlpha - ALPHA(L)) + abs(pRed - RED(L)) +
|
|
|
|
abs(pGreen - GREEN(L)) + abs(pBlue - BLUE(L));
|
|
|
|
int pT = abs(pAlpha - ALPHA(T)) + abs(pRed - RED(T)) +
|
|
|
|
abs(pGreen - GREEN(T)) + abs(pBlue - BLUE(T));
|
|
|
|
|
|
|
|
// Return either left or top, the one closer to the prediction.
|
2014-09-18 08:21:02 +02:00
|
|
|
if (pL < pT) { // \[AMENDED\]
|
2012-05-26 02:11:02 +02:00
|
|
|
return L;
|
|
|
|
} else {
|
|
|
|
return T;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
The functions `ClampAddSubtractFull` and `ClampAddSubtractHalf` are
|
2012-05-26 02:11:02 +02:00
|
|
|
performed for each ARGB component as follows:
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
// Clamp the input value between 0 and 255.
|
|
|
|
int Clamp(int a) {
|
|
|
|
return (a < 0) ? 0 : (a > 255) ? 255 : a;
|
|
|
|
}
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
int ClampAddSubtractFull(int a, int b, int c) {
|
|
|
|
return Clamp(a + b - c);
|
|
|
|
}
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
int ClampAddSubtractHalf(int a, int b) {
|
|
|
|
return Clamp(a + (a - b) / 2);
|
|
|
|
}
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
There are special handling rules for some border pixels. If there is a
|
2012-12-20 20:25:59 +01:00
|
|
|
prediction transform, regardless of the mode \[0..13\] for these pixels,
|
2012-06-15 00:14:14 +02:00
|
|
|
the predicted value for the left-topmost pixel of the image is
|
|
|
|
0xff000000, L-pixel for all pixels on the top row, and T-pixel for all
|
|
|
|
pixels on the leftmost column.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2022-03-25 03:36:30 +01:00
|
|
|
\[AMENDED2\]
|
2012-06-15 00:14:14 +02:00
|
|
|
Addressing the TR-pixel for pixels on the rightmost column is
|
|
|
|
exceptional. The pixels on the rightmost column are predicted by using
|
2022-03-11 22:10:05 +01:00
|
|
|
the modes \[0..13\] just like pixels not on the border, but the leftmost pixel
|
|
|
|
on the same row as the current pixel is instead used as the TR-pixel.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
### Color Transform
|
|
|
|
|
2022-03-25 03:36:30 +01:00
|
|
|
\[AMENDED2\]
|
|
|
|
|
2012-06-15 00:14:14 +02:00
|
|
|
The goal of the color transform is to decorrelate the R, G and B values
|
|
|
|
of each pixel. Color transform keeps the green (G) value as it is,
|
|
|
|
transforms red (R) based on green and transforms blue (B) based on green
|
|
|
|
and then based on red.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-06-15 00:14:14 +02:00
|
|
|
As is the case for the predictor transform, first the image is divided
|
|
|
|
into blocks and the same transform mode is used for all the pixels in a
|
|
|
|
block. For each block there are three types of color transform elements.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
typedef struct {
|
|
|
|
uint8 green_to_red;
|
|
|
|
uint8 green_to_blue;
|
|
|
|
uint8 red_to_blue;
|
|
|
|
} ColorTransformElement;
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
The actual color transformation is done by defining a color transform
|
2012-06-15 02:13:15 +02:00
|
|
|
delta. The color transform delta depends on the `ColorTransformElement`,
|
|
|
|
which is the same for all the pixels in a particular block. The delta is
|
2022-03-11 22:51:51 +01:00
|
|
|
subtracted during color transform. The inverse color transform then is just
|
|
|
|
adding those deltas.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
The color transform function is defined as follows:
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
void ColorTransform(uint8 red, uint8 blue, uint8 green,
|
|
|
|
ColorTransformElement *trans,
|
|
|
|
uint8 *new_red, uint8 *new_blue) {
|
|
|
|
// Transformed values of red and blue components
|
2022-03-11 22:51:51 +01:00
|
|
|
int tmp_red = red;
|
|
|
|
int tmp_blue = blue;
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2022-03-11 22:51:51 +01:00
|
|
|
// Applying the transform is just subtracting the transform deltas
|
2022-07-25 22:34:54 +02:00
|
|
|
tmp_red -= ColorTransformDelta(trans->green_to_red_, green);
|
|
|
|
tmp_blue -= ColorTransformDelta(trans->green_to_blue_, green);
|
|
|
|
tmp_blue -= ColorTransformDelta(trans->red_to_blue_, red);
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
*new_red = tmp_red & 0xff;
|
|
|
|
*new_blue = tmp_blue & 0xff;
|
|
|
|
}
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2012-06-14 21:57:02 +02:00
|
|
|
`ColorTransformDelta` is computed using a signed 8-bit integer
|
|
|
|
representing a 3.5-fixed-point number, and a signed 8-bit RGB color
|
2012-12-20 20:25:59 +01:00
|
|
|
channel (c) \[-128..127\] and is defined as follows:
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
int8 ColorTransformDelta(int8 t, int8 c) {
|
|
|
|
return (t * c) >> 5;
|
|
|
|
}
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2016-09-05 19:57:56 +02:00
|
|
|
A conversion from the 8-bit unsigned representation (uint8) to the 8-bit
|
2022-03-11 22:51:51 +01:00
|
|
|
signed one (int8) is required before calling `ColorTransformDelta()`.
|
2016-09-05 19:57:56 +02:00
|
|
|
It should be performed using 8-bit two's complement (that is: uint8 range
|
|
|
|
\[128-255\] is mapped to the \[-128, -1\] range of its converted int8 value).
|
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
The multiplication is to be done using more precision (with at least
|
|
|
|
16-bit dynamics). The sign extension property of the shift operation
|
2012-06-15 00:14:14 +02:00
|
|
|
does not matter here: only the lowest 8 bits are used from the result,
|
|
|
|
and there the sign extension shifting and unsigned shifting are
|
|
|
|
consistent with each other.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-06-15 00:14:14 +02:00
|
|
|
Now we describe the contents of color transform data so that decoding
|
|
|
|
can apply the inverse color transform and recover the original red and
|
2012-12-05 22:37:52 +01:00
|
|
|
blue values. The first 3 bits of the color transform data contain the
|
2012-06-15 00:14:14 +02:00
|
|
|
width and height of the image block in number of bits, just like the
|
|
|
|
predictor transform:
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2012-12-20 19:44:42 +01:00
|
|
|
int size_bits = ReadBits(3) + 2;
|
2012-05-26 02:11:02 +02:00
|
|
|
int block_width = 1 << size_bits;
|
|
|
|
int block_height = 1 << size_bits;
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
The remaining part of the color transform data contains
|
2012-06-15 02:13:15 +02:00
|
|
|
`ColorTransformElement` instances corresponding to each block of the
|
|
|
|
image. `ColorTransformElement` instances are treated as pixels of an
|
|
|
|
image and encoded using the methods described in
|
|
|
|
[Chapter 4](#image-data).
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
During decoding, `ColorTransformElement` instances of the blocks are
|
2012-06-15 00:14:14 +02:00
|
|
|
decoded and the inverse color transform is applied on the ARGB values of
|
2012-06-15 02:13:15 +02:00
|
|
|
the pixels. As mentioned earlier, that inverse color transform is just
|
|
|
|
subtracting `ColorTransformElement` values from the red and blue
|
|
|
|
channels.
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2012-05-26 02:11:02 +02:00
|
|
|
void InverseTransform(uint8 red, uint8 green, uint8 blue,
|
2022-07-25 22:34:54 +02:00
|
|
|
ColorTransformElement *trans,
|
2012-05-26 02:11:02 +02:00
|
|
|
uint8 *new_red, uint8 *new_blue) {
|
2022-03-11 22:51:51 +01:00
|
|
|
// Transformed values of red and blue components
|
|
|
|
int tmp_red = red;
|
|
|
|
int tmp_blue = blue;
|
|
|
|
|
|
|
|
// Applying inverse transform is just adding the
|
2012-05-26 02:11:02 +02:00
|
|
|
// color transform deltas
|
2022-03-11 22:51:51 +01:00
|
|
|
tmp_red += ColorTransformDelta(trans->green_to_red, green);
|
|
|
|
tmp_blue += ColorTransformDelta(trans->green_to_blue, green);
|
|
|
|
tmp_blue += ColorTransformDelta(trans->red_to_blue, tmp_red & 0xff);
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2022-03-11 22:51:51 +01:00
|
|
|
*new_red = tmp_red & 0xff;
|
|
|
|
*new_blue = tmp_blue & 0xff;
|
2012-05-26 02:11:02 +02:00
|
|
|
}
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
|
|
### Subtract Green Transform
|
|
|
|
|
|
|
|
The subtract green transform subtracts green values from red and blue
|
2012-06-15 00:14:14 +02:00
|
|
|
values of each pixel. When this transform is present, the decoder needs
|
|
|
|
to add the green value to both red and blue. There is no data associated
|
|
|
|
with this transform. The decoder applies the inverse transform as
|
|
|
|
follows:
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
void AddGreenToBlueAndRed(uint8 green, uint8 *red, uint8 *blue) {
|
|
|
|
*red = (*red + green) & 0xff;
|
|
|
|
*blue = (*blue + green) & 0xff;
|
|
|
|
}
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2012-06-15 00:14:14 +02:00
|
|
|
This transform is redundant as it can be modeled using the color
|
2012-06-15 02:13:15 +02:00
|
|
|
transform, but it is still often useful. Since it can extend the
|
|
|
|
dynamics of the color transform and there is no additional data here,
|
|
|
|
the subtract green transform can be coded using fewer bits than a
|
|
|
|
full-blown color transform.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
### Color Indexing Transform
|
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
If there are not many unique pixel values, it may be more efficient to
|
|
|
|
create a color index array and replace the pixel values by the array's
|
|
|
|
indices. The color indexing transform achieves this. (In the context of
|
|
|
|
WebP lossless, we specifically do not call this a palette transform
|
|
|
|
because a similar but more dynamic concept exists in WebP lossless
|
|
|
|
encoding: color cache.)
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-06-15 00:14:14 +02:00
|
|
|
The color indexing transform checks for the number of unique ARGB values
|
|
|
|
in the image. If that number is below a threshold (256), it creates an
|
2012-06-15 02:13:15 +02:00
|
|
|
array of those ARGB values, which is then used to replace the pixel
|
|
|
|
values with the corresponding index: the green channel of the pixels are
|
|
|
|
replaced with the index; all alpha values are set to 255; all red and
|
2012-06-15 00:14:14 +02:00
|
|
|
blue values to 0.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-06-15 00:14:14 +02:00
|
|
|
The transform data contains color table size and the entries in the
|
|
|
|
color table. The decoder reads the color indexing transform data as
|
2012-06-15 02:13:15 +02:00
|
|
|
follows:
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
// 8 bit value for color table size
|
2012-12-20 19:44:42 +01:00
|
|
|
int color_table_size = ReadBits(8) + 1;
|
2012-05-26 02:11:02 +02:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2012-06-15 00:14:14 +02:00
|
|
|
The color table is stored using the image storage format itself. The
|
|
|
|
color table can be obtained by reading an image, without the RIFF
|
2012-06-15 02:13:15 +02:00
|
|
|
header, image size, and transforms, assuming a height of one pixel and
|
|
|
|
a width of `color_table_size`. The color table is always
|
|
|
|
subtraction-coded to reduce image entropy. The deltas of palette colors
|
|
|
|
contain typically much less entropy than the colors themselves, leading
|
2012-06-15 00:14:14 +02:00
|
|
|
to significant savings for smaller images. In decoding, every final
|
|
|
|
color in the color table can be obtained by adding the previous color
|
2012-06-15 02:13:15 +02:00
|
|
|
component values by each ARGB component separately, and storing the
|
2012-06-15 00:14:14 +02:00
|
|
|
least significant 8 bits of the result.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
The inverse transform for the image is simply replacing the pixel values
|
2012-06-15 00:14:14 +02:00
|
|
|
(which are indices to the color table) with the actual color table
|
|
|
|
values. The indexing is done based on the green component of the ARGB
|
|
|
|
color.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
// Inverse transform
|
|
|
|
argb = color_table[GREEN(argb)];
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2014-09-18 08:21:02 +02:00
|
|
|
If the index is equal or larger than color_table_size, the argb color value
|
|
|
|
should be set to 0x00000000 (transparent black). \[AMENDED\]
|
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
When the color table is small (equal to or less than 16 colors), several
|
|
|
|
pixels are bundled into a single pixel. The pixel bundling packs several
|
|
|
|
(2, 4, or 8) pixels into a single pixel, reducing the image width
|
|
|
|
respectively. Pixel bundling allows for a more efficient joint
|
|
|
|
distribution entropy coding of neighboring pixels, and gives some
|
|
|
|
arithmetic coding-like benefits to the entropy code, but it can only be
|
|
|
|
used when there are a small number of unique values.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
`color_table_size` specifies how many pixels are combined together:
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2012-06-15 02:13:15 +02:00
|
|
|
int width_bits;
|
2012-05-26 02:11:02 +02:00
|
|
|
if (color_table_size <= 2) {
|
|
|
|
width_bits = 3;
|
|
|
|
} else if (color_table_size <= 4) {
|
|
|
|
width_bits = 2;
|
|
|
|
} else if (color_table_size <= 16) {
|
|
|
|
width_bits = 1;
|
2012-06-15 02:13:15 +02:00
|
|
|
} else {
|
|
|
|
width_bits = 0;
|
2012-05-26 02:11:02 +02:00
|
|
|
}
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
`width_bits` has a value of 0, 1, 2 or 3. A value of 0 indicates no
|
2012-06-14 21:57:02 +02:00
|
|
|
pixel bundling to be done for the image. A value of 1 indicates that two
|
2012-12-20 20:25:59 +01:00
|
|
|
pixels are combined together, and each pixel has a range of \[0..15\]. A
|
2012-06-14 21:57:02 +02:00
|
|
|
value of 2 indicates that four pixels are combined together, and each
|
2012-12-20 20:25:59 +01:00
|
|
|
pixel has a range of \[0..3\]. A value of 3 indicates that eight pixels
|
|
|
|
are combined together and each pixel has a range of \[0..1\], i.e., a
|
2012-06-14 21:57:02 +02:00
|
|
|
binary value.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
The values are packed into the green component as follows:
|
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
* `width_bits` = 1: for every x value where x ≡ 0 (mod 2), a green
|
2012-06-15 00:14:14 +02:00
|
|
|
value at x is positioned into the 4 least-significant bits of the
|
|
|
|
green value at x / 2, a green value at x + 1 is positioned into the
|
|
|
|
4 most-significant bits of the green value at x / 2.
|
2012-06-15 02:13:15 +02:00
|
|
|
* `width_bits` = 2: for every x value where x ≡ 0 (mod 4), a green
|
2012-06-15 00:14:14 +02:00
|
|
|
value at x is positioned into the 2 least-significant bits of the
|
2022-03-11 22:09:27 +01:00
|
|
|
green value at x / 4, green values at x + 1 to x + 3 are positioned in order
|
|
|
|
to the more significant bits of the green value at x / 4.
|
2012-06-15 02:13:15 +02:00
|
|
|
* `width_bits` = 3: for every x value where x ≡ 0 (mod 8), a green
|
2012-06-15 00:14:14 +02:00
|
|
|
value at x is positioned into the least-significant bit of the green
|
2022-03-11 22:09:27 +01:00
|
|
|
value at x / 8, green values at x + 1 to x + 7 are positioned in order to
|
|
|
|
the more significant bits of the green value at x / 8.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
|
2012-06-15 00:59:26 +02:00
|
|
|
4 Image Data
|
|
|
|
------------
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-12-20 19:44:42 +01:00
|
|
|
Image data is an array of pixel values in scan-line order.
|
|
|
|
|
|
|
|
### 4.1 Roles of Image Data
|
|
|
|
|
|
|
|
We use image data in five different roles:
|
|
|
|
|
|
|
|
1. ARGB image: Stores the actual pixels of the image.
|
|
|
|
1. Entropy image: Stores the
|
2022-06-16 19:46:18 +02:00
|
|
|
[meta prefix codes](#decoding-of-meta-prefix-codes). The red and green
|
|
|
|
components of a pixel define the meta prefix code used in a particular
|
2012-12-20 19:44:42 +01:00
|
|
|
block of the ARGB image.
|
|
|
|
1. Predictor image: Stores the metadata for [Predictor
|
|
|
|
Transform](#predictor-transform). The green component of a pixel defines
|
|
|
|
which of the 14 predictors is used within a particular block of the
|
|
|
|
ARGB image.
|
|
|
|
1. Color transform image. It is created by `ColorTransformElement` values
|
2012-12-12 23:03:44 +01:00
|
|
|
(defined in [Color Transform](#color-transform)) for different blocks of
|
|
|
|
the image. Each `ColorTransformElement` `'cte'` is treated as a pixel whose
|
|
|
|
alpha component is `255`, red component is `cte.red_to_blue`, green
|
|
|
|
component is `cte.green_to_blue` and blue component is `cte.green_to_red`.
|
2022-03-11 22:09:27 +01:00
|
|
|
1. Color indexing image: An array of size `color_table_size` (up to 256
|
2012-12-20 19:44:42 +01:00
|
|
|
ARGB values) storing the metadata for the
|
|
|
|
[Color Indexing Transform](#color-indexing-transform). This is stored as an
|
|
|
|
image of width `color_table_size` and height `1`.
|
|
|
|
|
2022-07-20 19:35:14 +02:00
|
|
|
### 4.2 Encoding of Image Data
|
2012-06-15 00:14:14 +02:00
|
|
|
|
2012-12-20 19:44:42 +01:00
|
|
|
The encoding of image data is independent of its role.
|
|
|
|
|
|
|
|
The image is first divided into a set of fixed-size blocks (typically 16x16
|
|
|
|
blocks). Each of these blocks are modeled using their own entropy codes. Also,
|
|
|
|
several blocks may share the same entropy codes.
|
|
|
|
|
|
|
|
**Rationale:** Storing an entropy code incurs a cost. This cost can be minimized
|
|
|
|
if statistically similar blocks share an entropy code, thereby storing that code
|
|
|
|
only once. For example, an encoder can find similar blocks by clustering them
|
|
|
|
using their statistical properties, or by repeatedly joining a pair of randomly
|
|
|
|
selected clusters when it reduces the overall amount of bits needed to encode
|
|
|
|
the image.
|
|
|
|
|
|
|
|
Each pixel is encoded using one of the three possible methods:
|
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
1. prefix coded literal: each channel (green, red, blue and alpha) is
|
2012-12-20 19:44:42 +01:00
|
|
|
entropy-coded independently;
|
|
|
|
2. LZ77 backward reference: a sequence of pixels are copied from elsewhere
|
2012-06-15 02:13:15 +02:00
|
|
|
in the image; or
|
2012-12-20 19:44:42 +01:00
|
|
|
3. Color cache code: using a short multiplicative hash code (color cache
|
2012-05-26 02:11:02 +02:00
|
|
|
index) of a recently seen color.
|
|
|
|
|
2012-12-20 19:44:42 +01:00
|
|
|
The following sub-sections describe each of these in detail.
|
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
#### 4.2.1 Prefix Coded Literals
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
The pixel is stored as prefix coded values of green, red, blue and alpha (in
|
2012-12-20 19:44:42 +01:00
|
|
|
that order). See [this section](#decoding-entropy-coded-image-data) for details.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-12-20 19:44:42 +01:00
|
|
|
#### 4.2.2 LZ77 Backward Reference
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-12-20 19:44:42 +01:00
|
|
|
Backward references are tuples of _length_ and _distance code_:
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-12-20 19:44:42 +01:00
|
|
|
* Length indicates how many pixels in scan-line order are to be copied.
|
|
|
|
* Distance code is a number indicating the position of a previously seen
|
|
|
|
pixel, from which the pixels are to be copied. The exact mapping is
|
|
|
|
described [below](#distance-mapping).
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-12-20 19:44:42 +01:00
|
|
|
The length and distance values are stored using **LZ77 prefix coding**.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-12-20 19:44:42 +01:00
|
|
|
LZ77 prefix coding divides large integer values into two parts: the _prefix
|
|
|
|
code_ and the _extra bits_: the prefix code is stored using an entropy code,
|
|
|
|
while the extra bits are stored as they are (without an entropy code).
|
|
|
|
|
|
|
|
**Rationale**: This approach reduces the storage requirement for the entropy
|
|
|
|
code. Also, large values are usually rare, and so extra bits would be used for
|
|
|
|
very few values in the image. Thus, this approach results in a better
|
|
|
|
compression overall.
|
|
|
|
|
|
|
|
The following table denotes the prefix codes and extra bits used for storing
|
2022-03-11 22:09:27 +01:00
|
|
|
different ranges of values.
|
2012-12-20 19:44:42 +01:00
|
|
|
|
|
|
|
Note: The maximum backward reference length is limited to 4096. Hence, only the
|
|
|
|
first 24 prefix codes (with the respective extra bits) are meaningful for length
|
|
|
|
values. For distance values, however, all the 40 prefix codes are valid.
|
|
|
|
|
|
|
|
| Value range | Prefix code | Extra bits |
|
|
|
|
| --------------- | ----------- | ---------- |
|
|
|
|
| 1 | 0 | 0 |
|
|
|
|
| 2 | 1 | 0 |
|
|
|
|
| 3 | 2 | 0 |
|
|
|
|
| 4 | 3 | 0 |
|
|
|
|
| 5..6 | 4 | 1 |
|
|
|
|
| 7..8 | 5 | 1 |
|
|
|
|
| 9..12 | 6 | 2 |
|
|
|
|
| 13..16 | 7 | 2 |
|
|
|
|
| ... | ... | ... |
|
|
|
|
| 3072..4096 | 23 | 10 |
|
|
|
|
| ... | ... | ... |
|
|
|
|
| 524289..786432 | 38 | 18 |
|
|
|
|
| 786433..1048576 | 39 | 18 |
|
|
|
|
|
|
|
|
The pseudocode to obtain a (length or distance) value from the prefix code is
|
|
|
|
as follows:
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
if (prefix_code < 4) {
|
2012-07-01 23:10:32 +02:00
|
|
|
return prefix_code + 1;
|
2012-05-26 02:11:02 +02:00
|
|
|
}
|
2012-06-15 02:13:15 +02:00
|
|
|
int extra_bits = (prefix_code - 2) >> 1;
|
|
|
|
int offset = (2 + (prefix_code & 1)) << extra_bits;
|
2012-05-26 02:11:02 +02:00
|
|
|
return offset + ReadBits(extra_bits) + 1;
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2012-12-20 19:44:42 +01:00
|
|
|
**Distance Mapping:**
|
|
|
|
{:#distance-mapping}
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-12-20 19:44:42 +01:00
|
|
|
As noted previously, distance code is a number indicating the position of a
|
|
|
|
previously seen pixel, from which the pixels are to be copied. This sub-section
|
|
|
|
defines the mapping between a distance code and the position of a previous
|
|
|
|
pixel.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-12-20 19:44:42 +01:00
|
|
|
The distance codes larger than 120 denote the pixel-distance in scan-line
|
|
|
|
order, offset by 120.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-12-20 20:25:59 +01:00
|
|
|
The smallest distance codes \[1..120\] are special, and are reserved for a close
|
2012-12-20 19:44:42 +01:00
|
|
|
neighborhood of the current pixel. This neighborhood consists of 120 pixels:
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-12-20 19:44:42 +01:00
|
|
|
* Pixels that are 1 to 7 rows above the current pixel, and are up to 8 columns
|
|
|
|
to the left or up to 7 columns to the right of the current pixel. \[Total
|
|
|
|
such pixels = `7 * (8 + 1 + 7) = 112`\].
|
|
|
|
* Pixels that are in same row as the current pixel, and are up to 8 columns to
|
|
|
|
the left of the current pixel. \[`8` such pixels\].
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-12-20 19:44:42 +01:00
|
|
|
The mapping between distance code `i` and the neighboring pixel offset
|
|
|
|
`(xi, yi)` is as follows:
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
(0, 1), (1, 0), (1, 1), (-1, 1), (0, 2), (2, 0), (1, 2), (-1, 2),
|
|
|
|
(2, 1), (-2, 1), (2, 2), (-2, 2), (0, 3), (3, 0), (1, 3), (-1, 3),
|
|
|
|
(3, 1), (-3, 1), (2, 3), (-2, 3), (3, 2), (-3, 2), (0, 4), (4, 0),
|
|
|
|
(1, 4), (-1, 4), (4, 1), (-4, 1), (3, 3), (-3, 3), (2, 4), (-2, 4),
|
|
|
|
(4, 2), (-4, 2), (0, 5), (3, 4), (-3, 4), (4, 3), (-4, 3), (5, 0),
|
|
|
|
(1, 5), (-1, 5), (5, 1), (-5, 1), (2, 5), (-2, 5), (5, 2), (-5, 2),
|
|
|
|
(4, 4), (-4, 4), (3, 5), (-3, 5), (5, 3), (-5, 3), (0, 6), (6, 0),
|
2012-06-15 02:13:15 +02:00
|
|
|
(1, 6), (-1, 6), (6, 1), (-6, 1), (2, 6), (-2, 6), (6, 2), (-6, 2),
|
|
|
|
(4, 5), (-4, 5), (5, 4), (-5, 4), (3, 6), (-3, 6), (6, 3), (-6, 3),
|
2012-05-26 02:11:02 +02:00
|
|
|
(0, 7), (7, 0), (1, 7), (-1, 7), (5, 5), (-5, 5), (7, 1), (-7, 1),
|
|
|
|
(4, 6), (-4, 6), (6, 4), (-6, 4), (2, 7), (-2, 7), (7, 2), (-7, 2),
|
|
|
|
(3, 7), (-3, 7), (7, 3), (-7, 3), (5, 6), (-5, 6), (6, 5), (-6, 5),
|
|
|
|
(8, 0), (4, 7), (-4, 7), (7, 4), (-7, 4), (8, 1), (8, 2), (6, 6),
|
|
|
|
(-6, 6), (8, 3), (5, 7), (-5, 7), (7, 5), (-7, 5), (8, 4), (6, 7),
|
|
|
|
(-6, 7), (7, 6), (-7, 6), (8, 5), (7, 7), (-7, 7), (8, 6), (8, 7)
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2022-03-11 22:09:27 +01:00
|
|
|
For example, distance code `1` indicates an offset of `(0, 1)` for the
|
|
|
|
neighboring pixel, that is, the pixel above the current pixel (0 pixel
|
|
|
|
difference in X-direction and 1 pixel difference in Y-direction). Similarly,
|
|
|
|
distance code `3` indicates left-top pixel.
|
2012-12-20 19:44:42 +01:00
|
|
|
|
2022-03-11 22:09:27 +01:00
|
|
|
The decoder can convert a distance code `i` to a scan-line order distance
|
|
|
|
`dist` as follows:
|
2012-12-20 19:44:42 +01:00
|
|
|
|
2022-07-25 22:34:54 +02:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2012-12-20 19:44:42 +01:00
|
|
|
(xi, yi) = distance_map[i]
|
|
|
|
dist = x + y * xsize
|
|
|
|
if (dist < 1) {
|
|
|
|
dist = 1
|
|
|
|
}
|
2022-07-25 22:34:54 +02:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2012-12-20 19:44:42 +01:00
|
|
|
|
2022-03-11 22:09:27 +01:00
|
|
|
where `distance_map` is the mapping noted above and `xsize` is the width of the
|
2012-12-20 19:44:42 +01:00
|
|
|
image in pixels.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
|
2012-12-20 19:44:42 +01:00
|
|
|
#### 4.2.3 Color Cache Coding
|
2022-05-12 00:40:45 +02:00
|
|
|
{:#color-cache-code}
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-12-20 19:44:42 +01:00
|
|
|
Color cache stores a set of colors that have been recently used in the image.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-12-20 19:44:42 +01:00
|
|
|
**Rationale:** This way, the recently used colors can sometimes be referred to
|
2022-03-11 22:09:27 +01:00
|
|
|
more efficiently than emitting them using the other two methods (described in
|
2022-06-16 19:46:18 +02:00
|
|
|
[4.2.1](#prefix-coded-literals) and [4.2.2](#lz77-backward-reference)).
|
2012-12-20 19:44:42 +01:00
|
|
|
|
|
|
|
Color cache codes are stored as follows. First, there is a 1-bit value that
|
|
|
|
indicates if the color cache is used. If this bit is 0, no color cache codes
|
2022-06-16 19:46:18 +02:00
|
|
|
exist, and they are not transmitted in the prefix code that decodes the green
|
2012-12-20 19:44:42 +01:00
|
|
|
symbols and the length prefix codes. However, if this bit is 1, the color cache
|
|
|
|
size is read next:
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2012-12-20 19:44:42 +01:00
|
|
|
int color_cache_code_bits = ReadBits(4);
|
2012-05-26 02:11:02 +02:00
|
|
|
int color_cache_size = 1 << color_cache_code_bits;
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
`color_cache_code_bits` defines the size of the color_cache by (1 <<
|
|
|
|
`color_cache_code_bits`). The range of allowed values for
|
2012-12-20 20:25:59 +01:00
|
|
|
`color_cache_code_bits` is \[1..11\]. Compliant decoders must indicate a
|
2012-06-15 02:13:15 +02:00
|
|
|
corrupted bitstream for other values.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-12-20 19:44:42 +01:00
|
|
|
A color cache is an array of size `color_cache_size`. Each entry
|
2012-06-15 00:14:14 +02:00
|
|
|
stores one ARGB color. Colors are looked up by indexing them by
|
2012-06-15 02:13:15 +02:00
|
|
|
(0x1e35a7bd * `color`) >> (32 - `color_cache_code_bits`). Only one
|
|
|
|
lookup is done in a color cache; there is no conflict resolution.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
In the beginning of decoding or encoding of an image, all entries in all
|
|
|
|
color cache values are set to zero. The color cache code is converted to
|
2012-06-15 00:14:14 +02:00
|
|
|
this color at decoding time. The state of the color cache is maintained
|
|
|
|
by inserting every pixel, be it produced by backward referencing or as
|
2012-05-26 02:11:02 +02:00
|
|
|
literals, into the cache in the order they appear in the stream.
|
|
|
|
|
|
|
|
|
2012-06-15 00:59:26 +02:00
|
|
|
5 Entropy Code
|
|
|
|
--------------
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-12-20 19:44:42 +01:00
|
|
|
### 5.1 Overview
|
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
Most of the data is coded using a [canonical prefix code][canonical_huff].
|
|
|
|
Hence, the codes are transmitted by sending the _prefix code lengths_, as
|
|
|
|
opposed to the actual _prefix codes_.
|
2012-12-20 19:44:42 +01:00
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
In particular, the format uses **spatially-variant prefix coding**. In other
|
2012-12-20 19:44:42 +01:00
|
|
|
words, different blocks of the image can potentially use different entropy
|
|
|
|
codes.
|
|
|
|
|
2022-03-11 22:09:27 +01:00
|
|
|
**Rationale**: Different areas of the image may have different characteristics.
|
|
|
|
So, allowing them to use different entropy codes provides more flexibility and
|
|
|
|
potentially better compression.
|
2012-12-20 19:44:42 +01:00
|
|
|
|
|
|
|
### 5.2 Details
|
|
|
|
|
2022-05-12 00:40:45 +02:00
|
|
|
The encoded image data consists of several parts:
|
2012-12-20 19:44:42 +01:00
|
|
|
|
2022-03-25 03:36:30 +01:00
|
|
|
1. Decoding and building the prefix codes \[AMENDED2\]
|
2022-06-16 19:46:18 +02:00
|
|
|
1. Meta prefix codes
|
2012-12-20 19:44:42 +01:00
|
|
|
1. Entropy-coded image data
|
|
|
|
|
2022-05-12 00:40:45 +02:00
|
|
|
#### 5.2.1 Decoding and Building the Prefix Codes
|
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
There are several steps in decoding the prefix codes.
|
2022-05-12 00:40:45 +02:00
|
|
|
|
|
|
|
**Decoding the Code Lengths:**
|
|
|
|
{:#decoding-the-code-lengths}
|
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
This section describes how to read the prefix code lengths from the bitstream.
|
2022-05-12 00:40:45 +02:00
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
The prefix code lengths can be coded in two ways. The method used is specified
|
2022-05-12 00:40:45 +02:00
|
|
|
by a 1-bit value.
|
|
|
|
|
|
|
|
* If this bit is 1, it is a _simple code length code_, and
|
|
|
|
* If this bit is 0, it is a _normal code length code_.
|
|
|
|
|
|
|
|
In both cases, there can be unused code lengths that are still part of the
|
|
|
|
stream. This may be inefficient, but it is allowed by the format.
|
|
|
|
|
|
|
|
**(i) Simple Code Length Code:**
|
|
|
|
|
2022-03-25 03:36:30 +01:00
|
|
|
\[AMENDED2\]
|
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
This variant is used in the special case when only 1 or 2 prefix symbols are
|
|
|
|
in the range \[0..255\] with code length `1`. All other prefix code lengths
|
2022-05-12 00:40:45 +02:00
|
|
|
are implicitly zeros.
|
|
|
|
|
2022-03-12 04:21:26 +01:00
|
|
|
The first bit indicates the number of symbols:
|
2022-05-12 00:40:45 +02:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2022-03-12 04:21:26 +01:00
|
|
|
int num_symbols = ReadBits(1) + 1;
|
2022-05-12 00:40:45 +02:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2022-03-12 04:21:26 +01:00
|
|
|
Following are the symbol values.
|
|
|
|
This first symbol is coded using 1 or 8 bits depending on the value of
|
2022-05-15 05:50:47 +02:00
|
|
|
`is_first_8bits`. The range is \[0..1\] or \[0..255\], respectively.
|
|
|
|
The second symbol, if present, is always assumed to be in the range \[0..255\]
|
2022-03-12 04:21:26 +01:00
|
|
|
and coded using 8 bits.
|
2022-05-12 00:40:45 +02:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
int is_first_8bits = ReadBits(1);
|
2022-03-12 04:21:26 +01:00
|
|
|
symbol0 = ReadBits(1 + 7 * is_first_8bits);
|
|
|
|
code_lengths[symbol0] = 1;
|
|
|
|
if (num_symbols == 2) {
|
|
|
|
symbol1 = ReadBits(8);
|
|
|
|
code_lengths[symbol1] = 1;
|
2022-05-12 00:40:45 +02:00
|
|
|
}
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
**Note:** Another special case is when _all_ prefix code lengths are _zeros_
|
|
|
|
(an empty prefix code). For example, a prefix code for distance can be empty
|
|
|
|
if there are no backward references. Similarly, prefix codes for alpha, red,
|
|
|
|
and blue can be empty if all pixels within the same meta prefix code are
|
2022-05-12 00:40:45 +02:00
|
|
|
produced using the color cache. However, this case doesn't need a special
|
2022-06-16 19:46:18 +02:00
|
|
|
handling, as empty prefix codes can be coded as those containing a single
|
2022-05-12 00:40:45 +02:00
|
|
|
symbol `0`.
|
|
|
|
|
|
|
|
**(ii) Normal Code Length Code:**
|
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
The code lengths of the prefix code fit in 8 bits and are read as follows.
|
2022-05-12 00:40:45 +02:00
|
|
|
First, `num_code_lengths` specifies the number of code lengths.
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
int num_code_lengths = 4 + ReadBits(4);
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
If `num_code_lengths` is > 18, the bitstream is invalid.
|
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
The code lengths are themselves encoded using prefix codes: lower level code
|
2022-05-12 00:40:45 +02:00
|
|
|
lengths `code_length_code_lengths` first have to be read. The rest of those
|
|
|
|
`code_length_code_lengths` (according to the order in `kCodeLengthCodeOrder`)
|
|
|
|
are zeros.
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
int kCodeLengthCodes = 19;
|
|
|
|
int kCodeLengthCodeOrder[kCodeLengthCodes] = {
|
|
|
|
17, 18, 0, 1, 2, 3, 4, 5, 16, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15
|
|
|
|
};
|
2022-05-15 05:49:51 +02:00
|
|
|
int code_length_code_lengths[kCodeLengthCodes] = { 0 }; // All zeros.
|
2022-05-12 00:40:45 +02:00
|
|
|
for (i = 0; i < num_code_lengths; ++i) {
|
|
|
|
code_length_code_lengths[kCodeLengthCodeOrder[i]] = ReadBits(3);
|
|
|
|
}
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Next, if `ReadBits(1) == 0`, the maximum number of different read symbols is
|
|
|
|
`num_code_lengths`. Otherwise, it is defined as:
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
int length_nbits = 2 + 2 * ReadBits(3);
|
|
|
|
int max_symbol = 2 + ReadBits(length_nbits);
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
A prefix table is then built from `code_length_code_lengths` and used to read
|
2022-05-12 00:40:45 +02:00
|
|
|
up to `max_symbol` code lengths.
|
|
|
|
|
|
|
|
* Code \[0..15\] indicates literal code lengths.
|
|
|
|
* Value 0 means no symbols have been coded.
|
|
|
|
* Values \[1..15\] indicate the bit length of the respective code.
|
|
|
|
* Code 16 repeats the previous non-zero value \[3..6\] times, i.e.,
|
|
|
|
`3 + ReadBits(2)` times. If code 16 is used before a non-zero
|
|
|
|
value has been emitted, a value of 8 is repeated.
|
|
|
|
* Code 17 emits a streak of zeros \[3..10\], i.e., `3 + ReadBits(3)`
|
|
|
|
times.
|
|
|
|
* Code 18 emits a streak of zeros of length \[11..138\], i.e.,
|
|
|
|
`11 + ReadBits(7)` times.
|
|
|
|
|
|
|
|
Once code lengths are read, a prefix code for each symbol type (A, R, G, B,
|
|
|
|
distance) is formed using their respective alphabet sizes:
|
|
|
|
|
|
|
|
* G channel: 256 + 24 + `color_cache_size`
|
|
|
|
* other literals (A,R,B): 256
|
|
|
|
* distance code: 40
|
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
#### 5.2.2 Decoding of Meta Prefix Codes
|
2012-12-20 19:44:42 +01:00
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
As noted earlier, the format allows the use of different prefix codes for
|
|
|
|
different blocks of the image. _Meta prefix codes_ are indexes identifying
|
|
|
|
which prefix codes to use in different parts of the image.
|
2012-12-20 19:44:42 +01:00
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
Meta prefix codes may be used _only_ when the image is being used in the
|
2012-12-20 19:44:42 +01:00
|
|
|
[role](#roles-of-image-data) of an _ARGB image_.
|
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
There are two possibilities for the meta prefix codes, indicated by a 1-bit
|
2012-12-20 19:44:42 +01:00
|
|
|
value:
|
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
* If this bit is zero, there is only one meta prefix code used everywhere in
|
2012-12-20 19:44:42 +01:00
|
|
|
the image. No more data is stored.
|
2022-06-16 19:46:18 +02:00
|
|
|
* If this bit is one, the image uses multiple meta prefix codes. These meta
|
|
|
|
prefix codes are stored as an _entropy image_ (described below).
|
2012-12-20 19:44:42 +01:00
|
|
|
|
|
|
|
**Entropy image:**
|
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
The entropy image defines which prefix codes are used in different parts of the
|
2012-12-20 19:44:42 +01:00
|
|
|
image, as described below.
|
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
The first 3-bits contain the `prefix_bits` value. The dimensions of the entropy
|
|
|
|
image are derived from 'prefix_bits'.
|
2012-12-20 19:44:42 +01:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2022-06-16 19:46:18 +02:00
|
|
|
int prefix_bits = ReadBits(3) + 2;
|
|
|
|
int prefix_xsize = DIV_ROUND_UP(xsize, 1 << prefix_bits);
|
|
|
|
int prefix_ysize = DIV_ROUND_UP(ysize, 1 << prefix_bits);
|
2012-12-20 19:44:42 +01:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
where `DIV_ROUND_UP` is as defined [earlier](#predictor-transform).
|
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
The next bits contain an entropy image of width `prefix_xsize` and height
|
|
|
|
`prefix_ysize`.
|
2012-12-20 19:44:42 +01:00
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
**Interpretation of Meta Prefix Codes:**
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
For any given pixel (x, y), there is a set of five prefix codes associated with
|
2013-01-17 22:23:59 +01:00
|
|
|
it. These codes are (in bitstream order):
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
* **prefix code #1**: used for green channel, backward-reference length and
|
2013-01-17 22:23:59 +01:00
|
|
|
color cache
|
2022-06-16 19:46:18 +02:00
|
|
|
* **prefix code #2, #3 and #4**: used for red, blue and alpha channels
|
2013-01-17 22:23:59 +01:00
|
|
|
respectively.
|
2022-06-16 19:46:18 +02:00
|
|
|
* **prefix code #5**: used for backward-reference distance.
|
2013-01-17 22:23:59 +01:00
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
From here on, we refer to this set as a **prefix code group**.
|
2013-01-17 22:23:59 +01:00
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
The number of prefix code groups in the ARGB image can be obtained by finding
|
|
|
|
the _largest meta prefix code_ from the entropy image:
|
2013-01-17 22:23:59 +01:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2022-06-16 19:46:18 +02:00
|
|
|
int num_prefix_groups = max(entropy image) + 1;
|
2013-01-17 22:23:59 +01:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2022-06-16 19:46:18 +02:00
|
|
|
where `max(entropy image)` indicates the largest prefix code stored in the
|
2013-01-17 22:23:59 +01:00
|
|
|
entropy image.
|
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
As each prefix code group contains five prefix codes, the total number of
|
|
|
|
prefix codes is:
|
2013-01-17 22:23:59 +01:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2022-06-16 19:46:18 +02:00
|
|
|
int num_prefix_codes = 5 * num_prefix_groups;
|
2013-01-17 22:23:59 +01:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
Given a pixel (x, y) in the ARGB image, we can obtain the corresponding prefix
|
2013-01-17 22:23:59 +01:00
|
|
|
codes to be used as follows:
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-12-20 19:44:42 +01:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2022-06-16 19:46:18 +02:00
|
|
|
int position = (y >> prefix_bits) * prefix_xsize + (x >> prefix_bits);
|
|
|
|
int meta_prefix_code = (entropy_image[pos] >> 8) & 0xffff;
|
|
|
|
PrefixCodeGroup prefix_group = prefix_code_groups[meta_prefix_code];
|
2012-12-20 19:44:42 +01:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
where, we have assumed the existence of `PrefixCodeGroup` structure, which
|
|
|
|
represents a set of five prefix codes. Also, `prefix_code_groups` is an array
|
|
|
|
of `PrefixCodeGroup` (of size `num_prefix_groups`).
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
The decoder then uses prefix code group `prefix_group` to decode the pixel
|
2013-01-17 22:23:59 +01:00
|
|
|
(x, y) as explained in the [next section](#decoding-entropy-coded-image-data).
|
2012-12-17 20:40:23 +01:00
|
|
|
|
2022-05-12 00:40:45 +02:00
|
|
|
#### 5.2.3 Decoding Entropy-coded Image Data
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2022-03-25 03:36:30 +01:00
|
|
|
\[AMENDED2\]
|
|
|
|
|
2013-01-17 22:23:59 +01:00
|
|
|
For the current position (x, y) in the image, the decoder first identifies the
|
2022-06-16 19:46:18 +02:00
|
|
|
corresponding prefix code group (as explained in the last section). Given the
|
|
|
|
prefix code group, the pixel is read and decoded as follows:
|
2012-06-15 02:13:15 +02:00
|
|
|
|
2022-06-16 19:46:18 +02:00
|
|
|
Read next symbol S from the bitstream using prefix code #1. Note that S is any
|
2022-05-12 00:40:45 +02:00
|
|
|
integer in the range `0` to
|
2022-03-11 22:09:27 +01:00
|
|
|
`(256 + 24 + ` [`color_cache_size`](#color-cache-code)` - 1)`.
|
2012-12-17 20:40:23 +01:00
|
|
|
|
|
|
|
The interpretation of S depends on its value:
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-12-17 20:40:23 +01:00
|
|
|
1. if S < 256
|
2022-03-11 22:09:27 +01:00
|
|
|
1. Use S as the green component.
|
2022-06-16 19:46:18 +02:00
|
|
|
1. Read red from the bitstream using prefix code #2.
|
|
|
|
1. Read blue from the bitstream using prefix code #3.
|
|
|
|
1. Read alpha from the bitstream using prefix code #4.
|
2022-05-12 00:40:45 +02:00
|
|
|
1. if S >= 256 && S < 256 + 24
|
2022-03-11 22:09:27 +01:00
|
|
|
1. Use S - 256 as a length prefix code.
|
|
|
|
1. Read extra bits for length from the bitstream.
|
2012-12-17 20:40:23 +01:00
|
|
|
1. Determine backward-reference length L from length prefix code and the
|
|
|
|
extra bits read.
|
2022-06-16 19:46:18 +02:00
|
|
|
1. Read distance prefix code from the bitstream using prefix code #5.
|
2022-03-11 22:09:27 +01:00
|
|
|
1. Read extra bits for distance from the bitstream.
|
2012-12-17 20:40:23 +01:00
|
|
|
1. Determine backward-reference distance D from distance prefix code and
|
|
|
|
the extra bits read.
|
|
|
|
1. Copy the L pixels (in scan-line order) from the sequence of pixels
|
|
|
|
prior to them by D pixels.
|
|
|
|
1. if S >= 256 + 24
|
|
|
|
1. Use S - (256 + 24) as the index into the color cache.
|
|
|
|
1. Get ARGB color from the color cache at that index.
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
|
2012-06-15 00:59:26 +02:00
|
|
|
6 Overall Structure of the Format
|
|
|
|
---------------------------------
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
Below is a view into the format in Backus-Naur form. It does not cover
|
|
|
|
all details. End-of-image (EOI) is only implicitly coded into the number
|
|
|
|
of pixels (xsize * ysize).
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
#### Basic Structure
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
<format> ::= <RIFF header><image size><image stream>
|
2012-12-17 20:40:23 +01:00
|
|
|
<image stream> ::= <optional-transform><spatially-coded image>
|
2012-05-26 02:11:02 +02:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
#### Structure of Transforms
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2012-12-17 20:40:23 +01:00
|
|
|
<optional-transform> ::= (1-bit value 1; <transform> <optional-transform>) |
|
|
|
|
1-bit value 0
|
2012-05-26 02:11:02 +02:00
|
|
|
<transform> ::= <predictor-tx> | <color-tx> | <subtract-green-tx> |
|
|
|
|
<color-indexing-tx>
|
2012-07-02 22:31:09 +02:00
|
|
|
<predictor-tx> ::= 2-bit value 0; <predictor image>
|
2012-12-20 19:44:42 +01:00
|
|
|
<predictor image> ::= 3-bit sub-pixel code ; <entropy-coded image>
|
2012-07-02 22:31:09 +02:00
|
|
|
<color-tx> ::= 2-bit value 1; <color image>
|
2012-12-20 19:44:42 +01:00
|
|
|
<color image> ::= 3-bit sub-pixel code ; <entropy-coded image>
|
2012-05-26 02:11:02 +02:00
|
|
|
<subtract-green-tx> ::= 2-bit value 2
|
2012-07-02 22:31:09 +02:00
|
|
|
<color-indexing-tx> ::= 2-bit value 3; <color-indexing image>
|
|
|
|
<color-indexing image> ::= 8-bit color count; <entropy-coded image>
|
2012-05-26 02:11:02 +02:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
#### Structure of the Image Data
|
2012-05-26 02:11:02 +02:00
|
|
|
|
2022-03-25 03:36:30 +01:00
|
|
|
\[AMENDED2\]
|
|
|
|
|
2012-05-26 02:11:02 +02:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2022-06-16 19:46:18 +02:00
|
|
|
<spatially-coded image> ::= <color cache info><meta prefix><data>
|
2022-03-12 19:52:33 +01:00
|
|
|
<entropy-coded image> ::= <color cache info><data>
|
|
|
|
<color cache info> ::= 1 bit value 0 |
|
|
|
|
(1-bit value 1; 4-bit value for color cache size)
|
2022-06-16 19:46:18 +02:00
|
|
|
<meta prefix> ::= 1-bit value 0 |
|
|
|
|
(1-bit value 1; <entropy image>)
|
|
|
|
<data> ::= <prefix codes><lz77-coded image>
|
2012-07-02 22:31:09 +02:00
|
|
|
<entropy image> ::= 3-bit subsample value; <entropy-coded image>
|
2022-06-16 19:46:18 +02:00
|
|
|
<prefix codes> ::= <prefix code group> | <prefix code group><prefix codes>
|
|
|
|
<prefix code group> ::= <prefix code><prefix code><prefix code>
|
|
|
|
<prefix code><prefix code>
|
|
|
|
See "Interpretation of Meta Prefix Codes" to
|
|
|
|
understand what each of these five prefix codes are
|
|
|
|
for.
|
|
|
|
<prefix code> ::= <simple prefix code> | <normal prefix code>
|
|
|
|
<simple prefix code> ::= see "Simple code length code" for details
|
|
|
|
<normal prefix code> ::= <code length code>; encoded code lengths
|
2012-05-31 22:04:19 +02:00
|
|
|
<code length code> ::= see section "Normal code length code"
|
2012-12-17 20:40:23 +01:00
|
|
|
<lz77-coded image> ::= ((<argb-pixel> | <lz77-copy> | <color-cache-code>)
|
|
|
|
<lz77-coded image>) | ""
|
2012-05-26 02:11:02 +02:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2012-06-15 02:13:15 +02:00
|
|
|
A possible example sequence:
|
2012-05-26 02:11:02 +02:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2012-06-14 21:03:55 +02:00
|
|
|
<RIFF header><image size>1-bit value 1<subtract-green-tx>
|
2022-03-12 19:52:33 +01:00
|
|
|
1-bit value 1<predictor-tx>1-bit value 0<color cache info>1-bit value 0
|
2022-06-16 19:46:18 +02:00
|
|
|
<prefix codes><lz77-coded image>
|
2012-05-26 02:11:02 +02:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2012-12-20 19:44:42 +01:00
|
|
|
|
2021-11-17 20:16:58 +01:00
|
|
|
[canonical_huff]: https://en.wikipedia.org/wiki/Canonical_Huffman_code
|