vote up 0 vote down star

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!

flag

56% accept rate

1 Answer

vote up 1 vote down

I'm not sure i understand your problem.

As far as i recall you do the usual boiler-plate up to jpeg_start_decompress(), then you start reading the lines via jpeg_read_scanlines() iteratively. If you need to cancel the operation, break out of the loop reading the scanlines.
If you need better responsiveness, read in smaller chunks.

link|flag
Many thanks! So you mean, if I want to interrupt decoding, I need to modify libjpeg source code, right? – sxingfeng Oct 21 at 9:43
what do you want to interrupt? jpeg_read_scanlines() ? – gf Oct 21 at 9:53
decoding an image needs 1000ms, at 300ms I decide to cancel decoding. I wish the decoder can interrupt immediately – sxingfeng Oct 22 at 1:35
While decoding an image might need 1000ms, one call to jpeg_read_scanlines() should be fast if you read small chunks. – gf Oct 22 at 15:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.