Home | History | Annotate | Download | only in demux

Lines Matching defs:config

14 #include "../webp/config.h"
34 WebPDecoderConfig config_; // Decoder config.
66 WebPDecoderConfig* config = &dec->config_;
77 WebPInitDecoderConfig(config);
78 config->output.colorspace = mode;
79 config->output.is_external_memory = 1;
80 config->options.use_threads = dec_options->use_threads;
81 // Note: config->output.u.RGBA is set at the time of decoding each frame.
351 WebPDecoderConfig* const config = &dec->config_;
352 WebPRGBABuffer* const buf = &config->output.u.RGBA;
357 if (WebPDecode(in, in_size, config) != VP8_STATUS_OK) {