You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is the divans on-disk file format seek-able? I.e. would it be possible to start decompressing somewhere in a file or would one need to decompress everything from the start?
Or in rust terms: could DivansDecompressorReader implement the std::io::Seek trait?
The text was updated successfully, but these errors were encountered:
oleid
changed the title
Question: Is the divans on-disk file format seek-able?
Question: Is the divans' on-disk file format seek-able?
Jun 20, 2018
not at the moment--but it would actually be a pretty small change--I patched dropbox/lepton@eb6fde4 to be seekable (though for images its less useful) by simply chopping the file up in regular sections (eg 2 or 4 mb) and resetting all the state at the boundary area.
It should be even easier to do a similar change to this codebase
Is the divans on-disk file format seek-able? I.e. would it be possible to start decompressing somewhere in a file or would one need to decompress everything from the start?
Or in rust terms: could DivansDecompressorReader implement the std::io::Seek trait?
The text was updated successfully, but these errors were encountered: