1 // Copyright 2012 Google Inc. All Rights Reserved. 2 // 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 // ----------------------------------------------------------------------------- 9 // 10 // Lossless encoder: internal header. 11 // 12 // Author: Vikas Arora ([email protected]) 13 14 #ifndef WEBP_ENC_VP8LI_ENC_H_ 15 #define WEBP_ENC_VP8LI_ENC_H_ 16 17 #ifdef HAVE_CONFIG_H 18 #include "src/webp/config.h" 19 #endif 20 // Either WEBP_NEAR_LOSSLESS is defined as 0 in config.h when compiling to 21 // disable near-lossless, or it is enabled by default. 22 #ifndef WEBP_NEAR_LOSSLESS 23 #define WEBP_NEAR_LOSSLESS 1 24 #endif 25 26 #include "src/enc/backward_references_enc.h" 27 #include "src/enc/histogram_enc.h" 28 #include "src/utils/bit_writer_utils.h" 29 #include "src/webp/encode.h" 30 #include "src/webp/format_constants.h" 31 32 #ifdef __cplusplus 33 extern "C" { 34 #endif 35 36 // maximum value of transform_bits_ in VP8LEncoder. 37 #define MAX_TRANSFORM_BITS 6 38 39 typedef enum { 40 kEncoderNone = 0, 41 kEncoderARGB, 42 kEncoderNearLossless, 43 kEncoderPalette 44 } VP8LEncoderARGBContent; 45 46 typedef struct { 47 const WebPConfig* config_; // user configuration and parameters 48 const WebPPicture* pic_; // input picture. 49 50 uint32_t* argb_; // Transformed argb image data. 51 VP8LEncoderARGBContent argb_content_; // Content type of the argb buffer. 52 uint32_t* argb_scratch_; // Scratch memory for argb rows 53 // (used for prediction). 54 uint32_t* transform_data_; // Scratch memory for transform data. 55 uint32_t* transform_mem_; // Currently allocated memory. 56 size_t transform_mem_size_; // Currently allocated memory size. 57 58 int current_width_; // Corresponds to packed image width. 59 60 // Encoding parameters derived from quality parameter. 61 int histo_bits_; 62 int transform_bits_; // <= MAX_TRANSFORM_BITS. 63 int cache_bits_; // If equal to 0, don't use color cache. 64 65 // Encoding parameters derived from image characteristics. 66 int use_cross_color_; 67 int use_subtract_green_; 68 int use_predict_; 69 int use_palette_; 70 int palette_size_; 71 uint32_t palette_[MAX_PALETTE_SIZE]; 72 // Sorted version of palette_ for cache purposes. 73 uint32_t palette_sorted_[MAX_PALETTE_SIZE]; 74 75 // Some 'scratch' (potentially large) objects. 76 struct VP8LBackwardRefs refs_[4]; // Backward Refs array for temporaries. 77 VP8LHashChain hash_chain_; // HashChain data for constructing 78 // backward references. 79 } VP8LEncoder; 80 81 //------------------------------------------------------------------------------ 82 // internal functions. Not public. 83 84 // Encodes the picture. 85 // Returns 0 if config or picture is NULL or picture doesn't have valid argb 86 // input. 87 int VP8LEncodeImage(const WebPConfig* const config, 88 const WebPPicture* const picture); 89 90 // Encodes the main image stream using the supplied bit writer. 91 // Returns false in case of error (stored in picture->error_code). 92 int VP8LEncodeStream(const WebPConfig* const config, 93 const WebPPicture* const picture, VP8LBitWriter* const bw); 94 95 #if (WEBP_NEAR_LOSSLESS == 1) 96 // in near_lossless.c 97 // Near lossless preprocessing in RGB color-space. 98 int VP8ApplyNearLossless(const WebPPicture* const picture, int quality, 99 uint32_t* const argb_dst); 100 #endif 101 102 //------------------------------------------------------------------------------ 103 // Image transforms in predictor.c. 104 105 // pic and percent are for progress. 106 // Returns false in case of error (stored in pic->error_code). 107 int VP8LResidualImage(int width, int height, int bits, int low_effort, 108 uint32_t* const argb, uint32_t* const argb_scratch, 109 uint32_t* const image, int near_lossless, int exact, 110 int used_subtract_green, const WebPPicture* const pic, 111 int percent_range, int* const percent); 112 113 int VP8LColorSpaceTransform(int width, int height, int bits, int quality, 114 uint32_t* const argb, uint32_t* image, 115 const WebPPicture* const pic, int percent_range, 116 int* const percent); 117 118 //------------------------------------------------------------------------------ 119 120 #ifdef __cplusplus 121 } // extern "C" 122 #endif 123 124 #endif // WEBP_ENC_VP8LI_ENC_H_ 125