Searched refs:VP8LSubSampleSize (Results 1 – 6 of 6) sorted by relevance
/external/webp/src/enc/ |
D | vp8l.c | 350 const int huff_image_size = VP8LSubSampleSize(width, histo_bits) * in GetHistoBits() 351 VP8LSubSampleSize(height, histo_bits); in GetHistoBits() 684 const int histo_xsize = histo_bits ? VP8LSubSampleSize(width, histo_bits) : 1; in StoreImageToBitMask() 834 VP8LSubSampleSize(width, histogram_bits) * in EncodeImageInternal() 835 VP8LSubSampleSize(height, histogram_bits); in EncodeImageInternal() 938 VP8LSubSampleSize(width, histogram_bits), in EncodeImageInternal() 939 VP8LSubSampleSize(height, histogram_bits), in EncodeImageInternal() 1012 const int transform_width = VP8LSubSampleSize(width, pred_bits); in ApplyPredictFilter() 1013 const int transform_height = VP8LSubSampleSize(height, pred_bits); in ApplyPredictFilter() 1034 const int transform_width = VP8LSubSampleSize(width, ccolor_transform_bits); in ApplyCrossColorFilter() [all …]
|
D | histogram.c | 420 const int histo_xsize = VP8LSubSampleSize(xsize, histo_bits); in HistogramBuild() 872 const int histo_xsize = histo_bits ? VP8LSubSampleSize(xsize, histo_bits) : 1; in VP8LGetHistoImageSymbols() 873 const int histo_ysize = histo_bits ? VP8LSubSampleSize(ysize, histo_bits) : 1; in VP8LGetHistoImageSymbols()
|
/external/webp/src/dsp/ |
D | lossless_enc.c | 623 const int tiles_per_row = VP8LSubSampleSize(width, bits); in CopyImageWithPrediction() 677 const int tiles_per_row = VP8LSubSampleSize(width, bits); in VP8LResidualImage() 678 const int tiles_per_col = VP8LSubSampleSize(height, bits); in VP8LResidualImage() 1001 const int tile_xsize = VP8LSubSampleSize(width, bits); in VP8LColorSpaceTransform() 1002 const int tile_ysize = VP8LSubSampleSize(height, bits); in VP8LColorSpaceTransform()
|
D | lossless.c | 199 const int tiles_per_row = VP8LSubSampleSize(width, transform->bits_); in PredictorInverseTransform() 288 const int tiles_per_row = VP8LSubSampleSize(width, transform->bits_); in ColorSpaceInverseTransform() 394 VP8LSubSampleSize(transform->xsize_, transform->bits_); in VP8LInverseTransform()
|
D | lossless.h | 170 static WEBP_INLINE uint32_t VP8LSubSampleSize(uint32_t size, in VP8LSubSampleSize() function
|
/external/webp/src/dec/ |
D | vp8l.c | 374 const int huffman_xsize = VP8LSubSampleSize(xsize, huffman_precision); in ReadHuffmanCodes() 375 const int huffman_ysize = VP8LSubSampleSize(ysize, huffman_precision); in ReadHuffmanCodes() 1218 ok = DecodeImageStream(VP8LSubSampleSize(transform->xsize_, in ReadTransform() 1220 VP8LSubSampleSize(transform->ysize_, in ReadTransform() 1230 *xsize = VP8LSubSampleSize(transform->xsize_, bits); in ReadTransform() 1311 hdr->huffman_xsize_ = VP8LSubSampleSize(width, num_bits); in UpdateDecoder()
|