ilanschnell / bitarray

efficient arrays of booleans for Python
Other
716 stars 98 forks source link

advice about implementation of arithmetic decoding #224

Open arsserpentarium opened 1 day ago

arsserpentarium commented 1 day ago

Hello, I need advice. I'm using python to generate bitarray. Which I need to arithmetically decode later. Of course, for practical reason it would be too slow to do it in python for any practical reason. So, I'd better to write c extension, which should call bitarray object from C and do all required numerical stuff. I'd be grateful for advice, how could I do it.