Home | History | Annotate | Download | only in enc

Lines Matching defs:histo

414   VP8LHistogram histo;
430 VP8LHistogramCreate(&histo, &refs, cache_bits);
432 VP8LHistogramNumCodes(&histo), histo.literal_, m->literal_);
434 VALUES_IN_BYTE, histo.red_, m->red_);
436 VALUES_IN_BYTE, histo.blue_, m->blue_);
438 VALUES_IN_BYTE, histo.alpha_, m->alpha_);
440 NUM_DISTANCE_CODES, histo.distance_, m->distance_);
768 VP8LHistogram* const histo = (VP8LHistogram*)malloc(sizeof(*histo));
769 if (histo == NULL) goto Error1;
771 VP8LHistogramCreate(histo, &refs_lz77, cache_bits);
772 bit_cost_lz77 = VP8LHistogramEstimateBits(histo);
774 VP8LHistogramCreate(histo, &refs_rle, cache_bits);
775 bit_cost_rle = VP8LHistogramEstimateBits(histo);
778 free(histo);
822 VP8LHistogram* const histo) {
843 VP8LHistogramAddSinglePixOrCopy(histo, &token);
845 VP8LHistogramAddSinglePixOrCopy(histo, v);
848 VP8LHistogramAddSinglePixOrCopy(histo, v);
880 VP8LHistogram histo;
881 VP8LHistogramInit(&histo, cache_bits);
882 ComputeCacheHistogram(argb, xsize, ysize, &refs, cache_bits, &histo);
883 cur_entropy = VP8LHistogramEstimateBits(&histo) +