Home
last modified time | relevance | path

Searched refs:VP8LSubSampleSize (Results 1 – 5 of 5) sorted by relevance

/external/webp/src/enc/
Dvp8l.c423 const int histo_xsize = histo_bits ? VP8LSubSampleSize(width, histo_bits) : 1; in StoreImageToBitMask()
519 VP8LSubSampleSize(width, histogram_bits) * in EncodeImageInternal()
520 VP8LSubSampleSize(height, histogram_bits); in EncodeImageInternal()
584 VP8LSubSampleSize(width, histogram_bits), in EncodeImageInternal()
585 VP8LSubSampleSize(height, histogram_bits), in EncodeImageInternal()
670 const int transform_width = VP8LSubSampleSize(width, pred_bits); in ApplyPredictFilter()
671 const int transform_height = VP8LSubSampleSize(height, pred_bits); in ApplyPredictFilter()
690 const int transform_width = VP8LSubSampleSize(width, ccolor_transform_bits); in ApplyCrossColorFilter()
691 const int transform_height = VP8LSubSampleSize(height, ccolor_transform_bits); in ApplyCrossColorFilter()
790 (uint64_t)VP8LSubSampleSize(width, enc->transform_bits_) * in AllocateTransformBuffer()
[all …]
Dhistogram.c228 const int histo_xsize = VP8LSubSampleSize(xsize, histo_bits); in HistogramBuildImage()
385 const int histo_xsize = histo_bits ? VP8LSubSampleSize(xsize, histo_bits) : 1; in VP8LGetHistoImageSymbols()
386 const int histo_ysize = histo_bits ? VP8LSubSampleSize(ysize, histo_bits) : 1; in VP8LGetHistoImageSymbols()
/external/webp/src/dsp/
Dlossless.h57 static WEBP_INLINE uint32_t VP8LSubSampleSize(uint32_t size, in VP8LSubSampleSize() function
Dlossless.c474 const int tiles_per_row = VP8LSubSampleSize(width, bits); in VP8LResidualImage()
475 const int tiles_per_col = VP8LSubSampleSize(height, bits); in VP8LResidualImage()
544 const int tiles_per_row = VP8LSubSampleSize(width, transform->bits_); in PredictorInverseTransform()
830 int tile_xsize = VP8LSubSampleSize(width, bits); in VP8LColorSpaceTransform()
831 int tile_ysize = VP8LSubSampleSize(height, bits); in VP8LColorSpaceTransform()
904 const int tiles_per_row = VP8LSubSampleSize(width, transform->bits_); in ColorSpaceInverseTransform()
989 VP8LSubSampleSize(transform->xsize_, transform->bits_); in VP8LInverseTransform()
/external/webp/src/dec/
Dvp8l.c319 const int huffman_xsize = VP8LSubSampleSize(xsize, huffman_precision); in ReadHuffmanCodes()
320 const int huffman_ysize = VP8LSubSampleSize(ysize, huffman_precision); in ReadHuffmanCodes()
853 ok = DecodeImageStream(VP8LSubSampleSize(transform->xsize_, in ReadTransform()
855 VP8LSubSampleSize(transform->ysize_, in ReadTransform()
865 *xsize = VP8LSubSampleSize(transform->xsize_, bits); in ReadTransform()
942 hdr->huffman_xsize_ = VP8LSubSampleSize(width, num_bits); in UpdateDecoder()