Is there still work being done on the ASCII85Decode filter or is this considered finished and should be debugged?
We need to introduce a change in the stm module API and in the filters management: the memory should be allocated by the caller and should be possible to apply a filter using repeated calls. As in: /* create a stm and install filters for read... */ /* allocate a 10k buffer... */ /* read 10k and check for eof... */ /* allocate 10k... */ /* read 10k and check for eof... */ ... We need to adapt the existing filters to follow that schema. As soon as the filesystem module API become ready I will write down a definitive API for the stm module.
