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

  /external/webp/src/enc/
histogram.h 61 // palette_code_bits is >= 0, initialize the histogram with this value.
64 int palette_code_bits);
66 // Return the size of the histogram for a given palette_code_bits.
67 int VP8LGetHistogramSize(int palette_code_bits);
69 // Set the palette_code_bits and reset the stats.
70 void VP8LHistogramInit(VP8LHistogram* const p, int palette_code_bits);
95 static WEBP_INLINE int VP8LHistogramNumCodes(int palette_code_bits) {
97 ((palette_code_bits > 0) ? (1 << palette_code_bits) : 0);
histogram.c 85 int palette_code_bits) {
86 if (palette_code_bits >= 0) {
87 p->palette_code_bits_ = palette_code_bits;
93 void VP8LHistogramInit(VP8LHistogram* const p, int palette_code_bits) {
94 p->palette_code_bits_ = palette_code_bits;
269 const int palette_code_bits = a->palette_code_bits_; local
272 VP8LHistogramNumCodes(palette_code_bits));
    [all...]
  /external/opencv3/3rdparty/libwebp/enc/
histogram.h 57 // palette_code_bits is >= 0, initialize the histogram with this value.
60 int palette_code_bits);
62 // Set the palette_code_bits and reset the stats.
63 void VP8LHistogramInit(VP8LHistogram* const p, int palette_code_bits);
histogram.c 43 int palette_code_bits) {
44 if (palette_code_bits >= 0) {
45 p->palette_code_bits_ = palette_code_bits;
51 void VP8LHistogramInit(VP8LHistogram* const p, int palette_code_bits) {
52 p->palette_code_bits_ = palette_code_bits;

Completed in 136 milliseconds