Home | History | Annotate | Download | only in enc

Lines Matching defs:config

333   const WebPConfig* const config = enc->config_;
334 const int method = config->method;
335 const int low_effort = (config->method == 0);
1416 static VP8LEncoder* VP8LEncoderNew(const WebPConfig* const config,
1423 enc->config_ = config;
1444 WebPEncodingError VP8LEncodeStream(const WebPConfig* const config,
1448 const int quality = (int)config->quality;
1449 const int low_effort = (config->method == 0);
1452 VP8LEncoder* const enc = VP8LEncoderNew(config, picture);
1474 (config->near_lossless < 100) && !enc->use_palette_ && !enc->use_predict_;
1477 config->near_lossless)) {
1484 if (config->use_delta_palette) {
1572 int VP8LEncodeImage(const WebPConfig* const config,
1584 if (config == NULL || picture->argb == NULL) {
1594 initial_size = (config->image_hint == WEBP_HINT_GRAPH) ?
1633 err = VP8LEncodeStream(config, picture, &bw, 1 /*use_cache*/);