| OLD | NEW |
| (Empty) |
| 1 // Copyright 2011 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 // WebP encoder: internal header. | |
| 11 // | |
| 12 // Author: Skal (pascal.massimino@gmail.com) | |
| 13 | |
| 14 #ifndef WEBP_ENC_VP8ENCI_H_ | |
| 15 #define WEBP_ENC_VP8ENCI_H_ | |
| 16 | |
| 17 #include <string.h> // for memcpy() | |
| 18 #include "../dec/common.h" | |
| 19 #include "../dsp/dsp.h" | |
| 20 #include "../utils/bit_writer.h" | |
| 21 #include "../utils/thread.h" | |
| 22 #include "../utils/utils.h" | |
| 23 #include "../webp/encode.h" | |
| 24 | |
| 25 #ifdef __cplusplus | |
| 26 extern "C" { | |
| 27 #endif | |
| 28 | |
| 29 //------------------------------------------------------------------------------ | |
| 30 // Various defines and enums | |
| 31 | |
| 32 // version numbers | |
| 33 #define ENC_MAJ_VERSION 0 | |
| 34 #define ENC_MIN_VERSION 5 | |
| 35 #define ENC_REV_VERSION 2 | |
| 36 | |
| 37 enum { MAX_LF_LEVELS = 64, // Maximum loop filter level | |
| 38 MAX_VARIABLE_LEVEL = 67, // last (inclusive) level with variable cost | |
| 39 MAX_LEVEL = 2047 // max level (note: max codable is 2047 + 67) | |
| 40 }; | |
| 41 | |
| 42 typedef enum { // Rate-distortion optimization levels | |
| 43 RD_OPT_NONE = 0, // no rd-opt | |
| 44 RD_OPT_BASIC = 1, // basic scoring (no trellis) | |
| 45 RD_OPT_TRELLIS = 2, // perform trellis-quant on the final decision only | |
| 46 RD_OPT_TRELLIS_ALL = 3 // trellis-quant for every scoring (much slower) | |
| 47 } VP8RDLevel; | |
| 48 | |
| 49 // YUV-cache parameters. Cache is 32-bytes wide (= one cacheline). | |
| 50 // The original or reconstructed samples can be accessed using VP8Scan[]. | |
| 51 // The predicted blocks can be accessed using offsets to yuv_p_ and | |
| 52 // the arrays VP8*ModeOffsets[]. | |
| 53 // * YUV Samples area (yuv_in_/yuv_out_/yuv_out2_) | |
| 54 // (see VP8Scan[] for accessing the blocks, along with | |
| 55 // Y_OFF_ENC/U_OFF_ENC/V_OFF_ENC): | |
| 56 // +----+----+ | |
| 57 // Y_OFF_ENC |YYYY|UUVV| | |
| 58 // U_OFF_ENC |YYYY|UUVV| | |
| 59 // V_OFF_ENC |YYYY|....| <- 25% wasted U/V area | |
| 60 // |YYYY|....| | |
| 61 // +----+----+ | |
| 62 // * Prediction area ('yuv_p_', size = PRED_SIZE_ENC) | |
| 63 // Intra16 predictions (16x16 block each, two per row): | |
| 64 // |I16DC16|I16TM16| | |
| 65 // |I16VE16|I16HE16| | |
| 66 // Chroma U/V predictions (16x8 block each, two per row): | |
| 67 // |C8DC8|C8TM8| | |
| 68 // |C8VE8|C8HE8| | |
| 69 // Intra 4x4 predictions (4x4 block each) | |
| 70 // |I4DC4 I4TM4 I4VE4 I4HE4|I4RD4 I4VR4 I4LD4 I4VL4| | |
| 71 // |I4HD4 I4HU4 I4TMP .....|.......................| <- ~31% wasted | |
| 72 #define YUV_SIZE_ENC (BPS * 16) | |
| 73 #define PRED_SIZE_ENC (32 * BPS + 16 * BPS + 8 * BPS) // I16+Chroma+I4 preds | |
| 74 #define Y_OFF_ENC (0) | |
| 75 #define U_OFF_ENC (16) | |
| 76 #define V_OFF_ENC (16 + 8) | |
| 77 | |
| 78 extern const int VP8Scan[16]; // in quant.c | |
| 79 extern const int VP8UVModeOffsets[4]; // in analyze.c | |
| 80 extern const int VP8I16ModeOffsets[4]; | |
| 81 extern const int VP8I4ModeOffsets[NUM_BMODES]; | |
| 82 | |
| 83 // Layout of prediction blocks | |
| 84 // intra 16x16 | |
| 85 #define I16DC16 (0 * 16 * BPS) | |
| 86 #define I16TM16 (I16DC16 + 16) | |
| 87 #define I16VE16 (1 * 16 * BPS) | |
| 88 #define I16HE16 (I16VE16 + 16) | |
| 89 // chroma 8x8, two U/V blocks side by side (hence: 16x8 each) | |
| 90 #define C8DC8 (2 * 16 * BPS) | |
| 91 #define C8TM8 (C8DC8 + 1 * 16) | |
| 92 #define C8VE8 (2 * 16 * BPS + 8 * BPS) | |
| 93 #define C8HE8 (C8VE8 + 1 * 16) | |
| 94 // intra 4x4 | |
| 95 #define I4DC4 (3 * 16 * BPS + 0) | |
| 96 #define I4TM4 (I4DC4 + 4) | |
| 97 #define I4VE4 (I4DC4 + 8) | |
| 98 #define I4HE4 (I4DC4 + 12) | |
| 99 #define I4RD4 (I4DC4 + 16) | |
| 100 #define I4VR4 (I4DC4 + 20) | |
| 101 #define I4LD4 (I4DC4 + 24) | |
| 102 #define I4VL4 (I4DC4 + 28) | |
| 103 #define I4HD4 (3 * 16 * BPS + 4 * BPS) | |
| 104 #define I4HU4 (I4HD4 + 4) | |
| 105 #define I4TMP (I4HD4 + 8) | |
| 106 | |
| 107 typedef int64_t score_t; // type used for scores, rate, distortion | |
| 108 // Note that MAX_COST is not the maximum allowed by sizeof(score_t), | |
| 109 // in order to allow overflowing computations. | |
| 110 #define MAX_COST ((score_t)0x7fffffffffffffLL) | |
| 111 | |
| 112 #define QFIX 17 | |
| 113 #define BIAS(b) ((b) << (QFIX - 8)) | |
| 114 // Fun fact: this is the _only_ line where we're actually being lossy and | |
| 115 // discarding bits. | |
| 116 static WEBP_INLINE int QUANTDIV(uint32_t n, uint32_t iQ, uint32_t B) { | |
| 117 return (int)((n * iQ + B) >> QFIX); | |
| 118 } | |
| 119 | |
| 120 // Uncomment the following to remove token-buffer code: | |
| 121 // #define DISABLE_TOKEN_BUFFER | |
| 122 | |
| 123 //------------------------------------------------------------------------------ | |
| 124 // Headers | |
| 125 | |
| 126 typedef uint32_t proba_t; // 16b + 16b | |
| 127 typedef uint8_t ProbaArray[NUM_CTX][NUM_PROBAS]; | |
| 128 typedef proba_t StatsArray[NUM_CTX][NUM_PROBAS]; | |
| 129 typedef uint16_t CostArray[NUM_CTX][MAX_VARIABLE_LEVEL + 1]; | |
| 130 typedef const uint16_t* (*CostArrayPtr)[NUM_CTX]; // for easy casting | |
| 131 typedef const uint16_t* CostArrayMap[16][NUM_CTX]; | |
| 132 typedef double LFStats[NUM_MB_SEGMENTS][MAX_LF_LEVELS]; // filter stats | |
| 133 | |
| 134 typedef struct VP8Encoder VP8Encoder; | |
| 135 | |
| 136 // segment features | |
| 137 typedef struct { | |
| 138 int num_segments_; // Actual number of segments. 1 segment only = unused. | |
| 139 int update_map_; // whether to update the segment map or not. | |
| 140 // must be 0 if there's only 1 segment. | |
| 141 int size_; // bit-cost for transmitting the segment map | |
| 142 } VP8EncSegmentHeader; | |
| 143 | |
| 144 // Struct collecting all frame-persistent probabilities. | |
| 145 typedef struct { | |
| 146 uint8_t segments_[3]; // probabilities for segment tree | |
| 147 uint8_t skip_proba_; // final probability of being skipped. | |
| 148 ProbaArray coeffs_[NUM_TYPES][NUM_BANDS]; // 1056 bytes | |
| 149 StatsArray stats_[NUM_TYPES][NUM_BANDS]; // 4224 bytes | |
| 150 CostArray level_cost_[NUM_TYPES][NUM_BANDS]; // 13056 bytes | |
| 151 CostArrayMap remapped_costs_[NUM_TYPES]; // 1536 bytes | |
| 152 int dirty_; // if true, need to call VP8CalculateLevelCosts() | |
| 153 int use_skip_proba_; // Note: we always use skip_proba for now. | |
| 154 int nb_skip_; // number of skipped blocks | |
| 155 } VP8EncProba; | |
| 156 | |
| 157 // Filter parameters. Not actually used in the code (we don't perform | |
| 158 // the in-loop filtering), but filled from user's config | |
| 159 typedef struct { | |
| 160 int simple_; // filtering type: 0=complex, 1=simple | |
| 161 int level_; // base filter level [0..63] | |
| 162 int sharpness_; // [0..7] | |
| 163 int i4x4_lf_delta_; // delta filter level for i4x4 relative to i16x16 | |
| 164 } VP8EncFilterHeader; | |
| 165 | |
| 166 //------------------------------------------------------------------------------ | |
| 167 // Informations about the macroblocks. | |
| 168 | |
| 169 typedef struct { | |
| 170 // block type | |
| 171 unsigned int type_:2; // 0=i4x4, 1=i16x16 | |
| 172 unsigned int uv_mode_:2; | |
| 173 unsigned int skip_:1; | |
| 174 unsigned int segment_:2; | |
| 175 uint8_t alpha_; // quantization-susceptibility | |
| 176 } VP8MBInfo; | |
| 177 | |
| 178 typedef struct VP8Matrix { | |
| 179 uint16_t q_[16]; // quantizer steps | |
| 180 uint16_t iq_[16]; // reciprocals, fixed point. | |
| 181 uint32_t bias_[16]; // rounding bias | |
| 182 uint32_t zthresh_[16]; // value below which a coefficient is zeroed | |
| 183 uint16_t sharpen_[16]; // frequency boosters for slight sharpening | |
| 184 } VP8Matrix; | |
| 185 | |
| 186 typedef struct { | |
| 187 VP8Matrix y1_, y2_, uv_; // quantization matrices | |
| 188 int alpha_; // quant-susceptibility, range [-127,127]. Zero is neutral. | |
| 189 // Lower values indicate a lower risk of blurriness. | |
| 190 int beta_; // filter-susceptibility, range [0,255]. | |
| 191 int quant_; // final segment quantizer. | |
| 192 int fstrength_; // final in-loop filtering strength | |
| 193 int max_edge_; // max edge delta (for filtering strength) | |
| 194 int min_disto_; // minimum distortion required to trigger filtering record | |
| 195 // reactivities | |
| 196 int lambda_i16_, lambda_i4_, lambda_uv_; | |
| 197 int lambda_mode_, lambda_trellis_, tlambda_; | |
| 198 int lambda_trellis_i16_, lambda_trellis_i4_, lambda_trellis_uv_; | |
| 199 | |
| 200 // lambda values for distortion-based evaluation | |
| 201 score_t i4_penalty_; // penalty for using Intra4 | |
| 202 } VP8SegmentInfo; | |
| 203 | |
| 204 // Handy transient struct to accumulate score and info during RD-optimization | |
| 205 // and mode evaluation. | |
| 206 typedef struct { | |
| 207 score_t D, SD; // Distortion, spectral distortion | |
| 208 score_t H, R, score; // header bits, rate, score. | |
| 209 int16_t y_dc_levels[16]; // Quantized levels for luma-DC, luma-AC, chroma. | |
| 210 int16_t y_ac_levels[16][16]; | |
| 211 int16_t uv_levels[4 + 4][16]; | |
| 212 int mode_i16; // mode number for intra16 prediction | |
| 213 uint8_t modes_i4[16]; // mode numbers for intra4 predictions | |
| 214 int mode_uv; // mode number of chroma prediction | |
| 215 uint32_t nz; // non-zero blocks | |
| 216 } VP8ModeScore; | |
| 217 | |
| 218 // Iterator structure to iterate through macroblocks, pointing to the | |
| 219 // right neighbouring data (samples, predictions, contexts, ...) | |
| 220 typedef struct { | |
| 221 int x_, y_; // current macroblock | |
| 222 int y_stride_, uv_stride_; // respective strides | |
| 223 uint8_t* yuv_in_; // input samples | |
| 224 uint8_t* yuv_out_; // output samples | |
| 225 uint8_t* yuv_out2_; // secondary buffer swapped with yuv_out_. | |
| 226 uint8_t* yuv_p_; // scratch buffer for prediction | |
| 227 VP8Encoder* enc_; // back-pointer | |
| 228 VP8MBInfo* mb_; // current macroblock | |
| 229 VP8BitWriter* bw_; // current bit-writer | |
| 230 uint8_t* preds_; // intra mode predictors (4x4 blocks) | |
| 231 uint32_t* nz_; // non-zero pattern | |
| 232 uint8_t i4_boundary_[37]; // 32+5 boundary samples needed by intra4x4 | |
| 233 uint8_t* i4_top_; // pointer to the current top boundary sample | |
| 234 int i4_; // current intra4x4 mode being tested | |
| 235 int top_nz_[9]; // top-non-zero context. | |
| 236 int left_nz_[9]; // left-non-zero. left_nz[8] is independent. | |
| 237 uint64_t bit_count_[4][3]; // bit counters for coded levels. | |
| 238 uint64_t luma_bits_; // macroblock bit-cost for luma | |
| 239 uint64_t uv_bits_; // macroblock bit-cost for chroma | |
| 240 LFStats* lf_stats_; // filter stats (borrowed from enc_) | |
| 241 int do_trellis_; // if true, perform extra level optimisation | |
| 242 int count_down_; // number of mb still to be processed | |
| 243 int count_down0_; // starting counter value (for progress) | |
| 244 int percent0_; // saved initial progress percent | |
| 245 | |
| 246 uint8_t* y_left_; // left luma samples (addressable from index -1 to 15). | |
| 247 uint8_t* u_left_; // left u samples (addressable from index -1 to 7) | |
| 248 uint8_t* v_left_; // left v samples (addressable from index -1 to 7) | |
| 249 | |
| 250 uint8_t* y_top_; // top luma samples at position 'x_' | |
| 251 uint8_t* uv_top_; // top u/v samples at position 'x_', packed as 16 bytes | |
| 252 | |
| 253 // memory for storing y/u/v_left_ | |
| 254 uint8_t yuv_left_mem_[17 + 16 + 16 + 8 + WEBP_ALIGN_CST]; | |
| 255 // memory for yuv_* | |
| 256 uint8_t yuv_mem_[3 * YUV_SIZE_ENC + PRED_SIZE_ENC + WEBP_ALIGN_CST]; | |
| 257 } VP8EncIterator; | |
| 258 | |
| 259 // in iterator.c | |
| 260 // must be called first | |
| 261 void VP8IteratorInit(VP8Encoder* const enc, VP8EncIterator* const it); | |
| 262 // restart a scan | |
| 263 void VP8IteratorReset(VP8EncIterator* const it); | |
| 264 // reset iterator position to row 'y' | |
| 265 void VP8IteratorSetRow(VP8EncIterator* const it, int y); | |
| 266 // set count down (=number of iterations to go) | |
| 267 void VP8IteratorSetCountDown(VP8EncIterator* const it, int count_down); | |
| 268 // return true if iteration is finished | |
| 269 int VP8IteratorIsDone(const VP8EncIterator* const it); | |
| 270 // Import uncompressed samples from source. | |
| 271 // If tmp_32 is not NULL, import boundary samples too. | |
| 272 // tmp_32 is a 32-bytes scratch buffer that must be aligned in memory. | |
| 273 void VP8IteratorImport(VP8EncIterator* const it, uint8_t* tmp_32); | |
| 274 // export decimated samples | |
| 275 void VP8IteratorExport(const VP8EncIterator* const it); | |
| 276 // go to next macroblock. Returns false if not finished. | |
| 277 int VP8IteratorNext(VP8EncIterator* const it); | |
| 278 // save the yuv_out_ boundary values to top_/left_ arrays for next iterations. | |
| 279 void VP8IteratorSaveBoundary(VP8EncIterator* const it); | |
| 280 // Report progression based on macroblock rows. Return 0 for user-abort request. | |
| 281 int VP8IteratorProgress(const VP8EncIterator* const it, | |
| 282 int final_delta_percent); | |
| 283 // Intra4x4 iterations | |
| 284 void VP8IteratorStartI4(VP8EncIterator* const it); | |
| 285 // returns true if not done. | |
| 286 int VP8IteratorRotateI4(VP8EncIterator* const it, | |
| 287 const uint8_t* const yuv_out); | |
| 288 | |
| 289 // Non-zero context setup/teardown | |
| 290 void VP8IteratorNzToBytes(VP8EncIterator* const it); | |
| 291 void VP8IteratorBytesToNz(VP8EncIterator* const it); | |
| 292 | |
| 293 // Helper functions to set mode properties | |
| 294 void VP8SetIntra16Mode(const VP8EncIterator* const it, int mode); | |
| 295 void VP8SetIntra4Mode(const VP8EncIterator* const it, const uint8_t* modes); | |
| 296 void VP8SetIntraUVMode(const VP8EncIterator* const it, int mode); | |
| 297 void VP8SetSkip(const VP8EncIterator* const it, int skip); | |
| 298 void VP8SetSegment(const VP8EncIterator* const it, int segment); | |
| 299 | |
| 300 //------------------------------------------------------------------------------ | |
| 301 // Paginated token buffer | |
| 302 | |
| 303 typedef struct VP8Tokens VP8Tokens; // struct details in token.c | |
| 304 | |
| 305 typedef struct { | |
| 306 #if !defined(DISABLE_TOKEN_BUFFER) | |
| 307 VP8Tokens* pages_; // first page | |
| 308 VP8Tokens** last_page_; // last page | |
| 309 uint16_t* tokens_; // set to (*last_page_)->tokens_ | |
| 310 int left_; // how many free tokens left before the page is full | |
| 311 int page_size_; // number of tokens per page | |
| 312 #endif | |
| 313 int error_; // true in case of malloc error | |
| 314 } VP8TBuffer; | |
| 315 | |
| 316 // initialize an empty buffer | |
| 317 void VP8TBufferInit(VP8TBuffer* const b, int page_size); | |
| 318 void VP8TBufferClear(VP8TBuffer* const b); // de-allocate pages memory | |
| 319 | |
| 320 #if !defined(DISABLE_TOKEN_BUFFER) | |
| 321 | |
| 322 // Finalizes bitstream when probabilities are known. | |
| 323 // Deletes the allocated token memory if final_pass is true. | |
| 324 int VP8EmitTokens(VP8TBuffer* const b, VP8BitWriter* const bw, | |
| 325 const uint8_t* const probas, int final_pass); | |
| 326 | |
| 327 // record the coding of coefficients without knowing the probabilities yet | |
| 328 int VP8RecordCoeffTokens(int ctx, const struct VP8Residual* const res, | |
| 329 VP8TBuffer* const tokens); | |
| 330 | |
| 331 // Estimate the final coded size given a set of 'probas'. | |
| 332 size_t VP8EstimateTokenSize(VP8TBuffer* const b, const uint8_t* const probas); | |
| 333 | |
| 334 // unused for now | |
| 335 void VP8TokenToStats(const VP8TBuffer* const b, proba_t* const stats); | |
| 336 | |
| 337 #endif // !DISABLE_TOKEN_BUFFER | |
| 338 | |
| 339 //------------------------------------------------------------------------------ | |
| 340 // VP8Encoder | |
| 341 | |
| 342 struct VP8Encoder { | |
| 343 const WebPConfig* config_; // user configuration and parameters | |
| 344 WebPPicture* pic_; // input / output picture | |
| 345 | |
| 346 // headers | |
| 347 VP8EncFilterHeader filter_hdr_; // filtering information | |
| 348 VP8EncSegmentHeader segment_hdr_; // segment information | |
| 349 | |
| 350 int profile_; // VP8's profile, deduced from Config. | |
| 351 | |
| 352 // dimension, in macroblock units. | |
| 353 int mb_w_, mb_h_; | |
| 354 int preds_w_; // stride of the *preds_ prediction plane (=4*mb_w + 1) | |
| 355 | |
| 356 // number of partitions (1, 2, 4 or 8 = MAX_NUM_PARTITIONS) | |
| 357 int num_parts_; | |
| 358 | |
| 359 // per-partition boolean decoders. | |
| 360 VP8BitWriter bw_; // part0 | |
| 361 VP8BitWriter parts_[MAX_NUM_PARTITIONS]; // token partitions | |
| 362 VP8TBuffer tokens_; // token buffer | |
| 363 | |
| 364 int percent_; // for progress | |
| 365 | |
| 366 // transparency blob | |
| 367 int has_alpha_; | |
| 368 uint8_t* alpha_data_; // non-NULL if transparency is present | |
| 369 uint32_t alpha_data_size_; | |
| 370 WebPWorker alpha_worker_; | |
| 371 | |
| 372 // quantization info (one set of DC/AC dequant factor per segment) | |
| 373 VP8SegmentInfo dqm_[NUM_MB_SEGMENTS]; | |
| 374 int base_quant_; // nominal quantizer value. Only used | |
| 375 // for relative coding of segments' quant. | |
| 376 int alpha_; // global susceptibility (<=> complexity) | |
| 377 int uv_alpha_; // U/V quantization susceptibility | |
| 378 // global offset of quantizers, shared by all segments | |
| 379 int dq_y1_dc_; | |
| 380 int dq_y2_dc_, dq_y2_ac_; | |
| 381 int dq_uv_dc_, dq_uv_ac_; | |
| 382 | |
| 383 // probabilities and statistics | |
| 384 VP8EncProba proba_; | |
| 385 uint64_t sse_[4]; // sum of Y/U/V/A squared errors for all macroblocks | |
| 386 uint64_t sse_count_; // pixel count for the sse_[] stats | |
| 387 int coded_size_; | |
| 388 int residual_bytes_[3][4]; | |
| 389 int block_count_[3]; | |
| 390 | |
| 391 // quality/speed settings | |
| 392 int method_; // 0=fastest, 6=best/slowest. | |
| 393 VP8RDLevel rd_opt_level_; // Deduced from method_. | |
| 394 int max_i4_header_bits_; // partition #0 safeness factor | |
| 395 int mb_header_limit_; // rough limit for header bits per MB | |
| 396 int thread_level_; // derived from config->thread_level | |
| 397 int do_search_; // derived from config->target_XXX | |
| 398 int use_tokens_; // if true, use token buffer | |
| 399 | |
| 400 // Memory | |
| 401 VP8MBInfo* mb_info_; // contextual macroblock infos (mb_w_ + 1) | |
| 402 uint8_t* preds_; // predictions modes: (4*mb_w+1) * (4*mb_h+1) | |
| 403 uint32_t* nz_; // non-zero bit context: mb_w+1 | |
| 404 uint8_t* y_top_; // top luma samples. | |
| 405 uint8_t* uv_top_; // top u/v samples. | |
| 406 // U and V are packed into 16 bytes (8 U + 8 V) | |
| 407 LFStats* lf_stats_; // autofilter stats (if NULL, autofilter is off) | |
| 408 }; | |
| 409 | |
| 410 //------------------------------------------------------------------------------ | |
| 411 // internal functions. Not public. | |
| 412 | |
| 413 // in tree.c | |
| 414 extern const uint8_t VP8CoeffsProba0[NUM_TYPES][NUM_BANDS][NUM_CTX][NUM_PROBAS]; | |
| 415 extern const uint8_t | |
| 416 VP8CoeffsUpdateProba[NUM_TYPES][NUM_BANDS][NUM_CTX][NUM_PROBAS]; | |
| 417 // Reset the token probabilities to their initial (default) values | |
| 418 void VP8DefaultProbas(VP8Encoder* const enc); | |
| 419 // Write the token probabilities | |
| 420 void VP8WriteProbas(VP8BitWriter* const bw, const VP8EncProba* const probas); | |
| 421 // Writes the partition #0 modes (that is: all intra modes) | |
| 422 void VP8CodeIntraModes(VP8Encoder* const enc); | |
| 423 | |
| 424 // in syntax.c | |
| 425 // Generates the final bitstream by coding the partition0 and headers, | |
| 426 // and appending an assembly of all the pre-coded token partitions. | |
| 427 // Return true if everything is ok. | |
| 428 int VP8EncWrite(VP8Encoder* const enc); | |
| 429 // Release memory allocated for bit-writing in VP8EncLoop & seq. | |
| 430 void VP8EncFreeBitWriters(VP8Encoder* const enc); | |
| 431 | |
| 432 // in frame.c | |
| 433 extern const uint8_t VP8Cat3[]; | |
| 434 extern const uint8_t VP8Cat4[]; | |
| 435 extern const uint8_t VP8Cat5[]; | |
| 436 extern const uint8_t VP8Cat6[]; | |
| 437 | |
| 438 // Form all the four Intra16x16 predictions in the yuv_p_ cache | |
| 439 void VP8MakeLuma16Preds(const VP8EncIterator* const it); | |
| 440 // Form all the four Chroma8x8 predictions in the yuv_p_ cache | |
| 441 void VP8MakeChroma8Preds(const VP8EncIterator* const it); | |
| 442 // Form all the ten Intra4x4 predictions in the yuv_p_ cache | |
| 443 // for the 4x4 block it->i4_ | |
| 444 void VP8MakeIntra4Preds(const VP8EncIterator* const it); | |
| 445 // Rate calculation | |
| 446 int VP8GetCostLuma16(VP8EncIterator* const it, const VP8ModeScore* const rd); | |
| 447 int VP8GetCostLuma4(VP8EncIterator* const it, const int16_t levels[16]); | |
| 448 int VP8GetCostUV(VP8EncIterator* const it, const VP8ModeScore* const rd); | |
| 449 // Main coding calls | |
| 450 int VP8EncLoop(VP8Encoder* const enc); | |
| 451 int VP8EncTokenLoop(VP8Encoder* const enc); | |
| 452 | |
| 453 // in webpenc.c | |
| 454 // Assign an error code to a picture. Return false for convenience. | |
| 455 int WebPEncodingSetError(const WebPPicture* const pic, WebPEncodingError error); | |
| 456 int WebPReportProgress(const WebPPicture* const pic, | |
| 457 int percent, int* const percent_store); | |
| 458 | |
| 459 // in analysis.c | |
| 460 // Main analysis loop. Decides the segmentations and complexity. | |
| 461 // Assigns a first guess for Intra16 and uvmode_ prediction modes. | |
| 462 int VP8EncAnalyze(VP8Encoder* const enc); | |
| 463 | |
| 464 // in quant.c | |
| 465 // Sets up segment's quantization values, base_quant_ and filter strengths. | |
| 466 void VP8SetSegmentParams(VP8Encoder* const enc, float quality); | |
| 467 // Pick best modes and fills the levels. Returns true if skipped. | |
| 468 int VP8Decimate(VP8EncIterator* const it, VP8ModeScore* const rd, | |
| 469 VP8RDLevel rd_opt); | |
| 470 | |
| 471 // in alpha.c | |
| 472 void VP8EncInitAlpha(VP8Encoder* const enc); // initialize alpha compression | |
| 473 int VP8EncStartAlpha(VP8Encoder* const enc); // start alpha coding process | |
| 474 int VP8EncFinishAlpha(VP8Encoder* const enc); // finalize compressed data | |
| 475 int VP8EncDeleteAlpha(VP8Encoder* const enc); // delete compressed data | |
| 476 | |
| 477 // in filter.c | |
| 478 void VP8SSIMAddStats(const VP8DistoStats* const src, VP8DistoStats* const dst); | |
| 479 void VP8SSIMAccumulatePlane(const uint8_t* src1, int stride1, | |
| 480 const uint8_t* src2, int stride2, | |
| 481 int W, int H, VP8DistoStats* const stats); | |
| 482 double VP8SSIMGet(const VP8DistoStats* const stats); | |
| 483 double VP8SSIMGetSquaredError(const VP8DistoStats* const stats); | |
| 484 | |
| 485 // autofilter | |
| 486 void VP8InitFilter(VP8EncIterator* const it); | |
| 487 void VP8StoreFilterStats(VP8EncIterator* const it); | |
| 488 void VP8AdjustFilterStrength(VP8EncIterator* const it); | |
| 489 | |
| 490 // returns the approximate filtering strength needed to smooth a edge | |
| 491 // step of 'delta', given a sharpness parameter 'sharpness'. | |
| 492 int VP8FilterStrengthFromDelta(int sharpness, int delta); | |
| 493 | |
| 494 // misc utils for picture_*.c: | |
| 495 | |
| 496 // Remove reference to the ARGB/YUVA buffer (doesn't free anything). | |
| 497 void WebPPictureResetBuffers(WebPPicture* const picture); | |
| 498 | |
| 499 // Allocates ARGB buffer of given dimension (previous one is always free'd). | |
| 500 // Preserves the YUV(A) buffer. Returns false in case of error (invalid param, | |
| 501 // out-of-memory). | |
| 502 int WebPPictureAllocARGB(WebPPicture* const picture, int width, int height); | |
| 503 | |
| 504 // Allocates YUVA buffer of given dimension (previous one is always free'd). | |
| 505 // Uses picture->csp to determine whether an alpha buffer is needed. | |
| 506 // Preserves the ARGB buffer. | |
| 507 // Returns false in case of error (invalid param, out-of-memory). | |
| 508 int WebPPictureAllocYUVA(WebPPicture* const picture, int width, int height); | |
| 509 | |
| 510 // Clean-up the RGB samples under fully transparent area, to help lossless | |
| 511 // compressibility (no guarantee, though). Assumes that pic->use_argb is true. | |
| 512 void WebPCleanupTransparentAreaLossless(WebPPicture* const pic); | |
| 513 | |
| 514 // in near_lossless.c | |
| 515 // Near lossless preprocessing in RGB color-space. | |
| 516 int VP8ApplyNearLossless(int xsize, int ysize, uint32_t* argb, int quality); | |
| 517 // Near lossless adjustment for predictors. | |
| 518 void VP8ApplyNearLosslessPredict(int xsize, int ysize, int pred_bits, | |
| 519 const uint32_t* argb_orig, | |
| 520 uint32_t* argb, uint32_t* argb_scratch, | |
| 521 const uint32_t* const transform_data, | |
| 522 int quality, int subtract_green); | |
| 523 //------------------------------------------------------------------------------ | |
| 524 | |
| 525 #ifdef __cplusplus | |
| 526 } // extern "C" | |
| 527 #endif | |
| 528 | |
| 529 #endif /* WEBP_ENC_VP8ENCI_H_ */ | |
| OLD | NEW |