Log in

View Full Version : Anyone getting over/undersizes with full quality first pass?


squid_80
2nd February 2006, 09:59
I think I *may* have spotted a small bug in the setup code for full quality first pass:
ZONES[NUM_ZONES].frame = 0;
ZONES[NUM_ZONES].mode = XVID_ZONE_QUANT;
ZONES[NUM_ZONES].weight = 100;
ZONES[NUM_ZONES].quant = 200;
ZONES[NUM_ZONES].type = XVID_TYPE_AUTO;
ZONES[NUM_ZONES].greyscale = 0;
ZONES[NUM_ZONES].chroma_opt = 0;
ZONES[NUM_ZONES].bvop_threshold = 0;
NUM_ZONES++;

sort_zones(ZONES, NUM_ZONES, &i);
It's not specifically disabling cartoon mode. I think there's a possibility this could be a problem but I'm not sure, which is why I'm asking if anyone has had any major issues hitting the correct filesizes after using full first pass.

P.S. Similar code is used to set up constant quality mode, so it's possible cartoon mode is being activated unintentionally with that as well.