- log min/max based on the slow value
- log unshifted max-min difference (from 0 to 15)
return;
ambient_max -= ambient_min;
- ambient_max >>= 2;
+ // ambient_max >>= 2;
if (ambient_max > 15)
ambient_max = 15;
ambient_drop = drop;
}
- if (ambient_min > byte_fast)
- ambient_min = byte_fast;
+ if (ambient_min > byte_slow)
+ ambient_min = byte_slow;
- if (ambient_max < byte_fast)
- ambient_max = byte_fast;
+ if (ambient_max < byte_slow)
+ ambient_max = byte_slow;
if (new_zone != ambient_zone) {
ambient_zone = new_zone;