void writeMipMapJpeg(WriteData *writeData)
{
JSAMPARRAY scanlines = 0; // will be filled later

struct jpeg_compress_struct cinfo;
struct jpeg_error_mgr jerr;
cinfo.err = writeData->writer.jpeg_std_error(&jerr);
writeData->writer.jpeg_create_compress(&cinfo);

try
{
    const JDIMENSION imageWidth = boost::numeric_cast<JDIMENSION>(writeData->mipMap.width());
    const JDIMENSION imageHeight = boost::numeric_cast<JDIMENSION>(writeData->mipMap.height());
    const int inputComponents = 3; // TODO ARGB, 4
    /// \todo Get as much required scanlines as possible (highest divident) to increase speed. Actually it could be equal to the MIP maps height which will lead to reading the whole MIP map with one single \ref jpeg_write_scanlines call
    const JDIMENSION requiredScanlines = imageHeight; // increase this value to read more scanlines in one step
    assert(requiredScanlines <= imageHeight && requiredScanlines > 0);
    const JDIMENSION scanlineSize = imageWidth * inputComponents; // JSAMPLEs per row in output buffer

    unsigned char *data = 0;
    unsigned long size = requiredScanlines * scanlineSize + 1024; // size of uncompressed scanlines + estimated header size
    writeData->writer.jpeg_mem_dest(&cinfo, &data, &size);
    cinfo.image_width = imageWidth;
    cinfo.image_height = imageHeight;
    cinfo.input_components = inputComponents;
    cinfo.in_color_space = JCS_RGB;
    writeData->writer.jpeg_set_defaults(&cinfo);
    writeData->writer.jpeg_set_quality(&cinfo, writeData->quality, false);
    writeData->writer.jpeg_start_compress(&cinfo, writeData->isFirst); // only write tables for the first MIP map

    // get header size
    writeData->headerSize = boost::numeric_cast<std::size_t>(size - cinfo.dest->free_in_buffer);

    scanlines = (*cinfo.mem->alloc_sarray)((j_common_ptr)&cinfo, JPOOL_IMAGE, scanlineSize, requiredScanlines);

    while (cinfo.next_scanline < cinfo.image_height)
    {
        for (dword height = cinfo.next_scanline; height < requiredScanlines; ++height)
        {
            dword width = 0;

            {
                const color argb = writeData->mipMap.colorAt(width, height).argb();
                scanlines[height][component] = blue(argb);
                scanlines[height][component + 1] = green(argb);
                scanlines[height][component + 2] = red(argb);

                if (cinfo.input_components == 4) // we do have an alpha channel
                    scanlines[height][component + 3] = 0xFF - alpha(argb);

                ++width;
            }
        }

        JDIMENSION dimension = writeData->writer.jpeg_write_scanlines(&cinfo, scanlines, requiredScanlines);

        if (dimension != requiredScanlines)
            throw Exception(boost::format(_("Number of written scan lines is not equal to %1%. It is %2%.")) % requiredScanlines % dimension);
    }

    // output buffer data for further treatment
    // ISSUE: cinfo.dest->free_in_buffer is larger than size!!!
    writeData->dataSize = boost::numeric_cast<std::size_t>(size - cinfo.dest->free_in_buffer);
    writeData->data.reset(new unsigned char[writeData->dataSize]);
    memcpy(writeData->data.get(), data, writeData->dataSize);
}
catch (std::exception &exception)
{
    // jpeg_abort_compress is only used when cinfo has to be used again.
    writeData->writer.jpeg_destroy_compress(&cinfo); // discard object
    writeData->stateMessage = exception.what();

    return;
}
catch (...)
{
    // jpeg_abort_compress is only used when cinfo has to be used again.
    writeData->writer.jpeg_destroy_compress(&cinfo); // discard object

    return;
}

writeData->writer.jpeg_finish_compress(&cinfo);
writeData->writer.jpeg_destroy_compress(&cinfo);
writeData->finished = true;
}

Additionally, it seems that jpeglib can't use an internal buffer with the size I pass in the size variable. Instead it uses 4096. In my test case I had written 512 scanlines at once (dimension = 512) for a 512*512*3 MIP map which would be a buffer size of 768 KiByte for the uncompressed data + 1 KiByte estimated header size.

Another question I have is how to get the size of the header data only or of some marker data most efficiently in the compressing function above since headerSize always seems to be 0 which is assigned before any scanlines are written.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.