I amusing libjpeg to decode a jpeg image from disk to a memory buffer allocated on the heap. I use jpeg_read_scanlines to read and decode each scanline from the file. This is working perfectly, decoding each pixel as a 24-bit RGB value.

The problem is that I am using an additional third-party library which requires a buffer in BGR format (rather than RGB). When using this library I get odd results as the channels are in the wrong order.

Therefore, I would like to find a way to make libjpeg decode to BGR format rather than RGB. I have trawled the web and cannot find how to configure libjpeg to do this? I know I could do an additional pass over the memory buffer and re-order the colour channels manually, however the application I am working on is extremely time critical and must be as fast and as efficient as possible.

link|improve this question
feedback

2 Answers

up vote 6 down vote accepted

Several solutions for you:

  • Do the transformation as suggested. If you work on groups of 4 pixels, you can do everything with three 32-bit reads and writes, bitmasks and shifts, and be very fast.
  • Modify libjpeg's YUV to RGB transformation or the stage just after so that it swaps R and B.
  • Use libjpeg-turbo. It is backwards compatible with libjpeg, has SIMD acceleration, and provides JCS_EXT_BGR and JCS_EXT_BGRX colorspaces.
  • Modify your source images so that their R and B channels are swapped. Sounds silly, but it requires zero source code modification.

Also, you say you are after speed yet you manipulate BGR data (instead of BGRX). This does not make much sense to me since aligning pixels on 32 bits boundaries is probably going to be much faster.

link|improve this answer
Thank you very much for this solution. So, I switched to libjpeg-turbo and set the colour space (jpeg_decompress_struct::out_color_space) to JCS_EXT_BGR. For further optimisations I am looking at moving to JCS_EXT_BGRX and modifying my client library to read in 4 byte chunks, reaping the benefits of fetching 32-bit aligned chunks rather than overlapping 24-bit chunks. I imagine this will be much more cache friendly. – Thomas Sampson Apr 11 '11 at 13:33
Oh and by the way, although our suggestion of modifying the input data was neat, I have no access to this data and should expect it in standard format. – Thomas Sampson Apr 11 '11 at 13:35
1  
Glad to know it helped. Note that the reason 32-bit chunks may be faster is not exactly cache efficiency (24-bit chunks take less space and are therefore nicer to the cache) but data access simplicity, because accessing a random pixel with 24-bit pixels may require two 32-bit reads (or three 8-bit reads) whereas the same with 32-bit pixels will only require one 32-bit read. – Sam Hocevar Apr 11 '11 at 14:47
Thanks for the explanation, this makes sense. I guess fetching a none 4byte aligned 24-bit pixel will incur two 32-bit reads on a modern x86 chip? One to read the first byte of the pixel, and the second to read bytes 2 and 3 of the pixel (also unnecessarily fetching another 2 bytes)? – Thomas Sampson Apr 11 '11 at 14:57
You cannot read 24 bits on any system I know. Either you read 32 bits and drop the 8 you do not need, or you read 16+8 bits, or you read 8+8+8 bits. If you read 32 bits and are unaligned, the CPU will probably read two 32-bit words and reassemble them for you (at a performance cost) but on some architectures it may crash. If you make several 8-bit reads, you get a performance hit as well, simply because that's more instructions. The difference may be tiny, but exactly how much depends the architecture. – Sam Hocevar Apr 11 '11 at 22:27
show 2 more comments
feedback

Libjpeg doesn't have a way to do this, as far as I know.
In any case, it's only an O(n) transformation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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