|
|
|
|
|
by Dylan16807
3305 days ago
|
|
What's your threshold for significance on image decoding speed? I bet making it 4x slower would be negligible in the vast majority of cases. The computational power you need for image decoding is extremely narrow and easy to make safe. You need some mathematical operations and some loops. You don't need any APIs or data structures. Mask off all the pointers and you can have have a provably safe interpeter/compiler that runs pretty fast. |
|