1 // Copyright 2011 Google Inc. All Rights Reserved.
3 // Use of this source code is governed by a BSD-style license
4 // that can be found in the COPYING file in the root of the source
5 // tree. An additional intellectual property rights grant can be found
6 // in the file PATENTS. All contributing project authors may
7 // be found in the AUTHORS file in the root of the source tree.
8 // -----------------------------------------------------------------------------
10 // Alpha-plane compression.
12 // Author: Skal (pascal.massimino@gmail.com)
17 #include "./vp8enci.h"
18 #include "../utils/filters.h"
19 #include "../utils/quant_levels.h"
20 #include "../utils/utils.h"
21 #include "../webp/format_constants.h"
23 // -----------------------------------------------------------------------------
24 // Encodes the given alpha data via specified compression method 'method'.
25 // The pre-processing (quantization) is performed if 'quality' is less than 100.
26 // For such cases, the encoding is lossy. The valid range is [0, 100] for
27 // 'quality' and [0, 1] for 'method':
28 // 'method = 0' - No compression;
29 // 'method = 1' - Use lossless coder on the alpha plane only
30 // 'filter' values [0, 4] correspond to prediction modes none, horizontal,
31 // vertical & gradient filters. The prediction mode 4 will try all the
32 // prediction modes 0 to 3 and pick the best one.
33 // 'effort_level': specifies how much effort must be spent to try and reduce
34 // the compressed output size. In range 0 (quick) to 6 (slow).
36 // 'output' corresponds to the buffer containing compressed alpha data.
37 // This buffer is allocated by this method and caller should call
38 // WebPSafeFree(*output) when done.
39 // 'output_size' corresponds to size of this compressed alpha buffer.
41 // Returns 1 on successfully encoding the alpha and
43 // invalid quality or method, or
44 // memory allocation for the compressed data fails.
46 #include "../enc/vp8li.h"
48 static int EncodeLossless(const uint8_t* const data
, int width
, int height
,
49 int effort_level
, // in [0..6] range
50 VP8LBitWriter
* const bw
,
51 WebPAuxStats
* const stats
) {
56 WebPPictureInit(&picture
);
57 picture
.width
= width
;
58 picture
.height
= height
;
60 picture
.stats
= stats
;
61 if (!WebPPictureAlloc(&picture
)) return 0;
63 // Transfer the alpha values to the green channel.
66 uint32_t* dst
= picture
.argb
;
67 const uint8_t* src
= data
;
68 for (j
= 0; j
< picture
.height
; ++j
) {
69 for (i
= 0; i
< picture
.width
; ++i
) {
70 dst
[i
] = src
[i
] << 8; // we leave A/R/B channels zero'd.
73 dst
+= picture
.argb_stride
;
77 WebPConfigInit(&config
);
79 config
.method
= effort_level
; // impact is very small
80 // Set a low default quality for encoding alpha. Ensure that Alpha quality at
81 // lower methods (3 and below) is less than the threshold for triggering
82 // costly 'BackwardReferencesTraceBackwards'.
83 config
.quality
= 8.f
* effort_level
;
84 assert(config
.quality
>= 0 && config
.quality
<= 100.f
);
86 ok
= (VP8LEncodeStream(&config
, &picture
, bw
) == VP8_ENC_OK
);
87 WebPPictureFree(&picture
);
88 ok
= ok
&& !bw
->error_
;
90 VP8LBitWriterDestroy(bw
);
97 // -----------------------------------------------------------------------------
99 // Small struct to hold the result of a filter mode compression attempt.
106 // This function always returns an initialized 'bw' object, even upon error.
107 static int EncodeAlphaInternal(const uint8_t* const data
, int width
, int height
,
108 int method
, int filter
, int reduce_levels
,
109 int effort_level
, // in [0..6] range
110 uint8_t* const tmp_alpha
,
111 FilterTrial
* result
) {
113 const uint8_t* alpha_src
;
114 WebPFilterFunc filter_func
;
116 const size_t data_size
= width
* height
;
117 const uint8_t* output
= NULL
;
118 size_t output_size
= 0;
119 VP8LBitWriter tmp_bw
;
121 assert((uint64_t)data_size
== (uint64_t)width
* height
); // as per spec
122 assert(filter
>= 0 && filter
< WEBP_FILTER_LAST
);
123 assert(method
>= ALPHA_NO_COMPRESSION
);
124 assert(method
<= ALPHA_LOSSLESS_COMPRESSION
);
125 assert(sizeof(header
) == ALPHA_HEADER_LEN
);
126 // TODO(skal): have a common function and #define's to validate alpha params.
128 filter_func
= WebPFilters
[filter
];
129 if (filter_func
!= NULL
) {
130 filter_func(data
, width
, height
, width
, tmp_alpha
);
131 alpha_src
= tmp_alpha
;
136 if (method
!= ALPHA_NO_COMPRESSION
) {
137 ok
= VP8LBitWriterInit(&tmp_bw
, data_size
>> 3);
138 ok
= ok
&& EncodeLossless(alpha_src
, width
, height
, effort_level
,
139 &tmp_bw
, &result
->stats
);
141 output
= VP8LBitWriterFinish(&tmp_bw
);
142 output_size
= VP8LBitWriterNumBytes(&tmp_bw
);
143 if (output_size
> data_size
) {
144 // compressed size is larger than source! Revert to uncompressed mode.
145 method
= ALPHA_NO_COMPRESSION
;
146 VP8LBitWriterDestroy(&tmp_bw
);
149 VP8LBitWriterDestroy(&tmp_bw
);
154 if (method
== ALPHA_NO_COMPRESSION
) {
156 output_size
= data_size
;
160 // Emit final result.
161 header
= method
| (filter
<< 2);
162 if (reduce_levels
) header
|= ALPHA_PREPROCESSED_LEVELS
<< 4;
164 VP8BitWriterInit(&result
->bw
, ALPHA_HEADER_LEN
+ output_size
);
165 ok
= ok
&& VP8BitWriterAppend(&result
->bw
, &header
, ALPHA_HEADER_LEN
);
166 ok
= ok
&& VP8BitWriterAppend(&result
->bw
, output
, output_size
);
168 if (method
!= ALPHA_NO_COMPRESSION
) {
169 VP8LBitWriterDestroy(&tmp_bw
);
171 ok
= ok
&& !result
->bw
.error_
;
172 result
->score
= VP8BitWriterSize(&result
->bw
);
176 // -----------------------------------------------------------------------------
178 // TODO(skal): move to dsp/ ?
179 static void CopyPlane(const uint8_t* src
, int src_stride
,
180 uint8_t* dst
, int dst_stride
, int width
, int height
) {
181 while (height
-- > 0) {
182 memcpy(dst
, src
, width
);
188 static int GetNumColors(const uint8_t* data
, int width
, int height
,
192 uint8_t color
[256] = { 0 };
194 for (j
= 0; j
< height
; ++j
) {
196 const uint8_t* const p
= data
+ j
* stride
;
197 for (i
= 0; i
< width
; ++i
) {
201 for (j
= 0; j
< 256; ++j
) {
202 if (color
[j
] > 0) ++colors
;
207 #define FILTER_TRY_NONE (1 << WEBP_FILTER_NONE)
208 #define FILTER_TRY_ALL ((1 << WEBP_FILTER_LAST) - 1)
210 // Given the input 'filter' option, return an OR'd bit-set of filters to try.
211 static uint32_t GetFilterMap(const uint8_t* alpha
, int width
, int height
,
212 int filter
, int effort_level
) {
213 uint32_t bit_map
= 0U;
214 if (filter
== WEBP_FILTER_FAST
) {
215 // Quick estimate of the best candidate.
216 int try_filter_none
= (effort_level
> 3);
217 const int kMinColorsForFilterNone
= 16;
218 const int kMaxColorsForFilterNone
= 192;
219 const int num_colors
= GetNumColors(alpha
, width
, height
, width
);
220 // For low number of colors, NONE yields better compression.
221 filter
= (num_colors
<= kMinColorsForFilterNone
) ? WEBP_FILTER_NONE
:
222 EstimateBestFilter(alpha
, width
, height
, width
);
223 bit_map
|= 1 << filter
;
224 // For large number of colors, try FILTER_NONE in addition to the best
226 if (try_filter_none
|| num_colors
> kMaxColorsForFilterNone
) {
227 bit_map
|= FILTER_TRY_NONE
;
229 } else if (filter
== WEBP_FILTER_NONE
) {
230 bit_map
= FILTER_TRY_NONE
;
231 } else { // WEBP_FILTER_BEST -> try all
232 bit_map
= FILTER_TRY_ALL
;
237 static void InitFilterTrial(FilterTrial
* const score
) {
238 score
->score
= (size_t)~0U;
239 VP8BitWriterInit(&score
->bw
, 0);
242 static int ApplyFiltersAndEncode(const uint8_t* alpha
, int width
, int height
,
243 size_t data_size
, int method
, int filter
,
244 int reduce_levels
, int effort_level
,
245 uint8_t** const output
,
246 size_t* const output_size
,
247 WebPAuxStats
* const stats
) {
251 GetFilterMap(alpha
, width
, height
, filter
, effort_level
);
252 InitFilterTrial(&best
);
253 if (try_map
!= FILTER_TRY_NONE
) {
254 uint8_t* filtered_alpha
= (uint8_t*)WebPSafeMalloc(1ULL, data_size
);
255 if (filtered_alpha
== NULL
) return 0;
257 for (filter
= WEBP_FILTER_NONE
; ok
&& try_map
; ++filter
, try_map
>>= 1) {
260 ok
= EncodeAlphaInternal(alpha
, width
, height
, method
, filter
,
261 reduce_levels
, effort_level
, filtered_alpha
,
263 if (ok
&& trial
.score
< best
.score
) {
264 VP8BitWriterWipeOut(&best
.bw
);
267 VP8BitWriterWipeOut(&trial
.bw
);
271 WebPSafeFree(filtered_alpha
);
273 ok
= EncodeAlphaInternal(alpha
, width
, height
, method
, WEBP_FILTER_NONE
,
274 reduce_levels
, effort_level
, NULL
, &best
);
277 if (stats
!= NULL
) *stats
= best
.stats
;
278 *output_size
= VP8BitWriterSize(&best
.bw
);
279 *output
= VP8BitWriterBuf(&best
.bw
);
281 VP8BitWriterWipeOut(&best
.bw
);
286 static int EncodeAlpha(VP8Encoder
* const enc
,
287 int quality
, int method
, int filter
,
289 uint8_t** const output
, size_t* const output_size
) {
290 const WebPPicture
* const pic
= enc
->pic_
;
291 const int width
= pic
->width
;
292 const int height
= pic
->height
;
294 uint8_t* quant_alpha
= NULL
;
295 const size_t data_size
= width
* height
;
298 const int reduce_levels
= (quality
< 100);
300 // quick sanity checks
301 assert((uint64_t)data_size
== (uint64_t)width
* height
); // as per spec
302 assert(enc
!= NULL
&& pic
!= NULL
&& pic
->a
!= NULL
);
303 assert(output
!= NULL
&& output_size
!= NULL
);
304 assert(width
> 0 && height
> 0);
305 assert(pic
->a_stride
>= width
);
306 assert(filter
>= WEBP_FILTER_NONE
&& filter
<= WEBP_FILTER_FAST
);
308 if (quality
< 0 || quality
> 100) {
312 if (method
< ALPHA_NO_COMPRESSION
|| method
> ALPHA_LOSSLESS_COMPRESSION
) {
316 if (method
== ALPHA_NO_COMPRESSION
) {
317 // Don't filter, as filtering will make no impact on compressed size.
318 filter
= WEBP_FILTER_NONE
;
321 quant_alpha
= (uint8_t*)WebPSafeMalloc(1ULL, data_size
);
322 if (quant_alpha
== NULL
) {
326 // Extract alpha data (width x height) from raw_data (stride x height).
327 CopyPlane(pic
->a
, pic
->a_stride
, quant_alpha
, width
, width
, height
);
329 if (reduce_levels
) { // No Quantization required for 'quality = 100'.
330 // 16 alpha levels gives quite a low MSE w.r.t original alpha plane hence
331 // mapped to moderate quality 70. Hence Quality:[0, 70] -> Levels:[2, 16]
332 // and Quality:]70, 100] -> Levels:]16, 256].
333 const int alpha_levels
= (quality
<= 70) ? (2 + quality
/ 5)
334 : (16 + (quality
- 70) * 8);
335 ok
= QuantizeLevels(quant_alpha
, width
, height
, alpha_levels
, &sse
);
339 ok
= ApplyFiltersAndEncode(quant_alpha
, width
, height
, data_size
, method
,
340 filter
, reduce_levels
, effort_level
, output
,
341 output_size
, pic
->stats
);
342 if (pic
->stats
!= NULL
) { // need stats?
343 pic
->stats
->coded_size
+= (int)(*output_size
);
348 WebPSafeFree(quant_alpha
);
352 //------------------------------------------------------------------------------
355 static int CompressAlphaJob(VP8Encoder
* const enc
, void* dummy
) {
356 const WebPConfig
* config
= enc
->config_
;
357 uint8_t* alpha_data
= NULL
;
358 size_t alpha_size
= 0;
359 const int effort_level
= config
->method
; // maps to [0..6]
360 const WEBP_FILTER_TYPE filter
=
361 (config
->alpha_filtering
== 0) ? WEBP_FILTER_NONE
:
362 (config
->alpha_filtering
== 1) ? WEBP_FILTER_FAST
:
364 if (!EncodeAlpha(enc
, config
->alpha_quality
, config
->alpha_compression
,
365 filter
, effort_level
, &alpha_data
, &alpha_size
)) {
368 if (alpha_size
!= (uint32_t)alpha_size
) { // Sanity check.
369 WebPSafeFree(alpha_data
);
372 enc
->alpha_data_size_
= (uint32_t)alpha_size
;
373 enc
->alpha_data_
= alpha_data
;
378 void VP8EncInitAlpha(VP8Encoder
* const enc
) {
379 enc
->has_alpha_
= WebPPictureHasTransparency(enc
->pic_
);
380 enc
->alpha_data_
= NULL
;
381 enc
->alpha_data_size_
= 0;
382 if (enc
->thread_level_
> 0) {
383 WebPWorker
* const worker
= &enc
->alpha_worker_
;
384 WebPGetWorkerInterface()->Init(worker
);
386 worker
->data2
= NULL
;
387 worker
->hook
= (WebPWorkerHook
)CompressAlphaJob
;
391 int VP8EncStartAlpha(VP8Encoder
* const enc
) {
392 if (enc
->has_alpha_
) {
393 if (enc
->thread_level_
> 0) {
394 WebPWorker
* const worker
= &enc
->alpha_worker_
;
395 // Makes sure worker is good to go.
396 if (!WebPGetWorkerInterface()->Reset(worker
)) {
399 WebPGetWorkerInterface()->Launch(worker
);
402 return CompressAlphaJob(enc
, NULL
); // just do the job right away
408 int VP8EncFinishAlpha(VP8Encoder
* const enc
) {
409 if (enc
->has_alpha_
) {
410 if (enc
->thread_level_
> 0) {
411 WebPWorker
* const worker
= &enc
->alpha_worker_
;
412 if (!WebPGetWorkerInterface()->Sync(worker
)) return 0; // error
415 return WebPReportProgress(enc
->pic_
, enc
->percent_
+ 20, &enc
->percent_
);
418 int VP8EncDeleteAlpha(VP8Encoder
* const enc
) {
420 if (enc
->thread_level_
> 0) {
421 WebPWorker
* const worker
= &enc
->alpha_worker_
;
422 // finish anything left in flight
423 ok
= WebPGetWorkerInterface()->Sync(worker
);
424 // still need to end the worker, even if !ok
425 WebPGetWorkerInterface()->End(worker
);
427 WebPSafeFree(enc
->alpha_data_
);
428 enc
->alpha_data_
= NULL
;
429 enc
->alpha_data_size_
= 0;