Aurelia Molzer

Results 457 comments of Aurelia Molzer

There are a few ways to wrap `libheif` and `mp4parse` but I'm not aware of any Rust native crate that is specifically dedicated to generically demuxing isobmff as heif, nor...

Not fully. Fallible collections reduce the risk of outright crashing but don't address the DOS-potentially inherent in running without limits. When a program runs on systems with overcommit or even...

> how come https://github.com/image-rs/image/issues/455 did not show this error btw? I'll check again but it may have been that some RLE images were skipped due to being undefined, or they...

This sounds like it should be supported to me. There are two hurdles to adoption that I see. * Can we define sensible conversion, not only _to_ a floating point...

This is due to the new feature for AV1 support, which requires `nasm` to be installed and be recent, specifically `2.14` I think. The specific features that require it are:...

> Will it be possible to automatically install that version, maybe with a build script? No, that's very definitely something that does _not_ belong in a build script let alone...

@abonander That highly depends on which part of the public api you are using. The utility functions such as transforms, conversions, loading etc. were kept from breaking with newer versions....

> Then this is just a NULL pointer dereference, which will lead to the program crash, but likely not exploitable. There is no null pointer dereference and no buffer overflow....

> But this makes me wonder why the HDR decoder Panic call does not seem to be recognized by the test suite, time to investigate... This is indeed worrying because...

One problem with `tga` is that it isn't a 'file format' and has no extension. Hence, we can't determine the type from the path alone. You can replace `image::open` with...