HomeSort by relevance Sort by last modified time
    Searched refs:is_lossless (Results 1 - 8 of 8) sorted by null

  /external/webp/src/mux/
animi.h 29 // is_lossless, quality - (in) encoding settings.
36 int is_lossless, float quality, int* const x_offset, int* const y_offset,
anim_encode.c 417 int is_lossless, float quality) {
420 is_lossless ? ComparePixelsLossless : ComparePixelsLossy;
422 const int max_allowed_diff = is_lossless ? 0 : max_allowed_diff_lossy;
536 // current frame based on 'is_lossless' and other parameters. Assumes that the
541 int is_lossless, float quality, FrameRect* const rect,
547 is_lossless, quality);
595 int is_lossless, float quality, int* const x_offset, int* const y_offset,
612 MinimizeChangeRectangle(prev_canvas, curr_canvas, &rect, is_lossless,
852 WebPMuxAnimDispose dispose_method, int is_lossless, int is_key_frame,
1067 const int is_lossless = config->lossless; local
    [all...]
muxedit.c 127 // Also outputs 'is_lossless' to be true if the given bitstream is lossless.
130 int* const is_lossless) {
149 *is_lossless = VP8LCheckSignature(image->bytes, image->size);
217 int is_lossless = 0; local
219 WebPMuxError err = GetImageData(bitstream, &image, &alpha, &is_lossless);
221 is_lossless ? kChunks[IDX_VP8L].tag : kChunks[IDX_VP8].tag;
muxread.c 78 const int is_lossless = (img->tag_ == kChunks[IDX_VP8L].tag); local
81 const int ok = is_lossless ?
87 if (is_lossless && (wpi->alpha_ != NULL)) {
  /external/webp/src/dec/
webpi_dec.h 66 int is_lossless; // true if a VP8L chunk is present member in struct:__anon36762
webp_dec.c 221 // The flag '*is_lossless' is set to 1 in case of VP8L chunk / raw VP8L data.
225 int* const is_lossless) {
235 assert(is_lossless != NULL);
254 *is_lossless = is_vp8l;
257 *is_lossless = VP8LCheckSignature(data, *data_size);
354 &hdrs.compressed_size, &hdrs.is_lossless);
363 *format = hdrs.is_lossless ? 2 : 1;
366 if (!hdrs.is_lossless) {
465 if (!headers.is_lossless) {
frame_dec.c 672 assert(headers == NULL || !headers->is_lossless);
idec_dec.c 324 idec->is_lossless_ = headers.is_lossless;

Completed in 101 milliseconds