Lines Matching defs:method
982 static int GetHistoBits(int method, int use_palette, int width, int height) {
984 // Make tile size a function of encoding method (Range: 0 to 6).
985 int histo_bits = (use_palette ? 9 : 7) - method;
996 static int GetTransformBits(int method, int histo_bits) {
997 const int max_transform_bits = (method < 4) ? 6 : (method > 4) ? 4 : 5;
1008 const int method = config->method;
1011 enc->histo_bits_ = GetHistoBits(method, use_palette, pic->width, pic->height);
1012 enc->transform_bits_ = GetTransformBits(method, enc->histo_bits_);