Lines Matching refs:enc
144 static int VP8LEncAnalyze(VP8LEncoder* const enc, WebPImageHint image_hint) { in VP8LEncAnalyze() argument
145 const WebPPicture* const pic = enc->pic_; in VP8LEncAnalyze()
148 enc->use_palette_ = in VP8LEncAnalyze()
149 AnalyzeAndCreatePalette(pic, enc->palette_, &enc->palette_size_); in VP8LEncAnalyze()
152 if (enc->use_palette_ && enc->palette_size_ < MAX_COLORS_FOR_GRAPH) { in VP8LEncAnalyze()
153 enc->use_palette_ = 0; in VP8LEncAnalyze()
157 if (!enc->use_palette_) { in VP8LEncAnalyze()
159 enc->use_predict_ = 1; in VP8LEncAnalyze()
160 enc->use_cross_color_ = 1; in VP8LEncAnalyze()
168 enc->use_predict_ = 1; in VP8LEncAnalyze()
172 enc->use_cross_color_ = 1; in VP8LEncAnalyze()
638 static int EvalAndApplySubtractGreen(VP8LEncoder* const enc, in EvalAndApplySubtractGreen() argument
641 if (!enc->use_palette_) { in EvalAndApplySubtractGreen()
643 const uint32_t* const argb = enc->argb_; in EvalAndApplySubtractGreen()
667 enc->use_subtract_green_ = (bit_cost_after < bit_cost_before); in EvalAndApplySubtractGreen()
668 if (enc->use_subtract_green_) { in EvalAndApplySubtractGreen()
671 VP8LSubtractGreenFromBlueAndRed(enc->argb_, width * height); in EvalAndApplySubtractGreen()
677 static int ApplyPredictFilter(const VP8LEncoder* const enc, in ApplyPredictFilter() argument
680 const int pred_bits = enc->transform_bits_; in ApplyPredictFilter()
684 VP8LResidualImage(width, height, pred_bits, enc->argb_, enc->argb_scratch_, in ApplyPredictFilter()
685 enc->transform_data_); in ApplyPredictFilter()
690 if (!EncodeImageNoHuffman(bw, enc->transform_data_, in ApplyPredictFilter()
697 static int ApplyCrossColorFilter(const VP8LEncoder* const enc, in ApplyCrossColorFilter() argument
700 const int ccolor_transform_bits = enc->transform_bits_; in ApplyCrossColorFilter()
706 enc->argb_, enc->transform_data_); in ApplyCrossColorFilter()
711 if (!EncodeImageNoHuffman(bw, enc->transform_data_, in ApplyCrossColorFilter()
787 static WebPEncodingError AllocateTransformBuffer(VP8LEncoder* const enc, in AllocateTransformBuffer() argument
790 const int tile_size = 1 << enc->transform_bits_; in AllocateTransformBuffer()
794 (uint64_t)VP8LSubSampleSize(width, enc->transform_bits_) * in AllocateTransformBuffer()
795 (uint64_t)VP8LSubSampleSize(height, enc->transform_bits_); in AllocateTransformBuffer()
803 enc->argb_ = mem; in AllocateTransformBuffer()
805 enc->argb_scratch_ = mem; in AllocateTransformBuffer()
807 enc->transform_data_ = mem; in AllocateTransformBuffer()
808 enc->current_width_ = width; in AllocateTransformBuffer()
839 VP8LEncoder* const enc, int quality) { in ApplyPalette() argument
842 const WebPPicture* const pic = enc->pic_; in ApplyPalette()
847 uint32_t* const palette = enc->palette_; in ApplyPalette()
848 const int palette_size = enc->palette_size_; in ApplyPalette()
860 err = AllocateTransformBuffer(enc, VP8LSubSampleSize(width, xbits), height); in ApplyPalette()
862 dst = enc->argb_; in ApplyPalette()
879 dst += enc->current_width_; in ApplyPalette()
920 static void InitEncParams(VP8LEncoder* const enc) { in InitEncParams() argument
921 const WebPConfig* const config = enc->config_; in InitEncParams()
922 const WebPPicture* const picture = enc->pic_; in InitEncParams()
925 enc->transform_bits_ = (method < 4) ? 5 : (method > 4) ? 3 : 4; in InitEncParams()
926 enc->histo_bits_ = GetHistoBits(config, picture); in InitEncParams()
927 enc->cache_bits_ = (quality <= 25.f) ? 0 : 7; in InitEncParams()
935 VP8LEncoder* const enc = (VP8LEncoder*)calloc(1, sizeof(*enc)); in VP8LEncoderNew() local
936 if (enc == NULL) { in VP8LEncoderNew()
940 enc->config_ = config; in VP8LEncoderNew()
941 enc->pic_ = picture; in VP8LEncoderNew()
942 return enc; in VP8LEncoderNew()
945 static void VP8LEncoderDelete(VP8LEncoder* enc) { in VP8LEncoderDelete() argument
946 free(enc->argb_); in VP8LEncoderDelete()
947 free(enc); in VP8LEncoderDelete()
960 VP8LEncoder* const enc = VP8LEncoderNew(config, picture); in VP8LEncodeStream() local
963 if (enc == NULL) { in VP8LEncodeStream()
968 InitEncParams(enc); in VP8LEncodeStream()
973 if (!VP8LEncAnalyze(enc, config->image_hint)) { in VP8LEncodeStream()
978 if (enc->use_palette_) { in VP8LEncodeStream()
979 err = ApplyPalette(bw, enc, quality); in VP8LEncodeStream()
982 enc->cache_bits_ = 0; in VP8LEncodeStream()
986 if (enc->argb_ == NULL) { in VP8LEncodeStream()
988 err = AllocateTransformBuffer(enc, width, height); in VP8LEncodeStream()
991 memcpy(enc->argb_ + y * width, in VP8LEncodeStream()
993 width * sizeof(*enc->argb_)); in VP8LEncodeStream()
995 enc->current_width_ = width; in VP8LEncodeStream()
1001 if (!EvalAndApplySubtractGreen(enc, enc->current_width_, height, bw)) { in VP8LEncodeStream()
1006 if (enc->use_predict_) { in VP8LEncodeStream()
1007 if (!ApplyPredictFilter(enc, enc->current_width_, height, quality, bw)) { in VP8LEncodeStream()
1013 if (enc->use_cross_color_) { in VP8LEncodeStream()
1014 if (!ApplyCrossColorFilter(enc, enc->current_width_, height, quality, bw)) { in VP8LEncodeStream()
1025 if (enc->cache_bits_ > 0) { in VP8LEncodeStream()
1026 if (!VP8LCalculateEstimateForCacheSize(enc->argb_, enc->current_width_, in VP8LEncodeStream()
1027 height, &enc->cache_bits_)) { in VP8LEncodeStream()
1036 if (!EncodeImageInternal(bw, enc->argb_, enc->current_width_, height, in VP8LEncodeStream()
1037 quality, enc->cache_bits_, enc->histo_bits_)) { in VP8LEncodeStream()
1045 if (enc->use_predict_) stats->lossless_features |= 1; in VP8LEncodeStream()
1046 if (enc->use_cross_color_) stats->lossless_features |= 2; in VP8LEncodeStream()
1047 if (enc->use_subtract_green_) stats->lossless_features |= 4; in VP8LEncodeStream()
1048 if (enc->use_palette_) stats->lossless_features |= 8; in VP8LEncodeStream()
1049 stats->histogram_bits = enc->histo_bits_; in VP8LEncodeStream()
1050 stats->transform_bits = enc->transform_bits_; in VP8LEncodeStream()
1051 stats->cache_bits = enc->cache_bits_; in VP8LEncodeStream()
1052 stats->palette_size = enc->palette_size_; in VP8LEncodeStream()
1057 VP8LEncoderDelete(enc); in VP8LEncodeStream()