Home | History | Annotate | Download | only in enc

Lines Matching defs:config

369   const WebPConfig* const config = enc->config_;
370 const int method = config->method;
371 const int low_effort = (config->method == 0);
1351 static VP8LEncoder* VP8LEncoderNew(const WebPConfig* const config,
1358 enc->config_ = config;
1379 WebPEncodingError VP8LEncodeStream(const WebPConfig* const config,
1383 const int quality = (int)config->quality;
1384 const int low_effort = (config->method == 0);
1387 VP8LEncoder* const enc = VP8LEncoderNew(config, picture);
1408 use_near_lossless = !enc->use_palette_ && (config->near_lossless < 100);
1411 config->near_lossless)) {
1418 if (config->delta_palettization) {
1502 int VP8LEncodeImage(const WebPConfig* const config,
1514 if (config == NULL || picture->argb == NULL) {
1524 initial_size = (config->image_hint == WEBP_HINT_GRAPH) ?
1563 err = VP8LEncodeStream(config, picture, &bw);