search for: multiplyer

Displaying 2 results from an estimated 2 matches for "multiplyer".

Did you mean: multiplier
2007 Oct 04
0
Powercom black knight 800AP (serial)
...use select(), instead using time() calls for the timeouts. Or upgrade the kernel.. 2) The maths for the output voltage is wrong when on battery power, but right(ish) when on line power. I've not tested it enormously, but (comparing with the windows program, volt meters, etc) it looks like the multiplyer is OK, but the offset is wrong. My (220 volt) version needed a slight tweak to the multiplyer when on line voltage (1.954,-0.0977) But on battery, the offset needed to be pushed up to 162.1. (otherwise it displays about 57 volts. The windows software showed there was still about 2v resolution, so...
2006 May 30
2
16 bits, cast on idct function
Hi all, Just a stupid question The IDctSlow function on file idct.c has this line : ip[0] = (ogg_int16_t)((_Gd + _Cd ) >> 0); The ip[0] , _Gd and _Cd are of type ogg_int32_t My question is: The result of (_Gd + _Cd) can be a number with more than 16 bits ? (yes, it can be because they are int32, but the algorithm could guarantee something about that... I dont know...) If