I am using libjpeg for decode jpeg file. when decoding a large image, user may switch to another jpeg file, So is decode-interrupt supported by libjpeg? Many thanks!
|
feedback
|
|
I'm not sure i understand your problem. As far as i recall you do the usual boiler-plate up to | |||||||||
feedback
|
|
Isn't your question really:
I think it basically would be, if the underlying stdio library is or you are not using jpeg_stdio_src. However, to be on "the bright side of life", I'd follow Georg's advice of checking after every read_scanline for a pending interrupt (your interrupt handler could set an interrupt-pending flag). That is how I solved that issue (where I needed preemptive scheduling of threads). | |||
|
feedback
|
|
Libjpeg has an I/O suspension feature. So yes you can suspend an encoding/decoding process (and resume it later), or simply interrupt it (with no wish to continue later). You can provide a customized input routines to libjpeg (by setting up a Quoting from the libjpeg doc, suspension is very simple :
The suspension can occur at early stages (like when calling
Suspension implements some backtracking, in order to offer a way to "resume" the encoding/decoding process. It can be expensive (I have no clue about it), so you may test it to see if it fits your needs. | ||||
|
feedback
|