From: Constantin Kaplinsky Date: Thu, 5 Jun 2008 03:05:13 +0000 (+0000) Subject: Improved error handling: if JpegCompressor could not compress the data, X-Git-Tag: v0.0.90~448 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=67ebf00acc436b3bd8bcd9615d8b8610b91b0f09;p=tigervnc.git Improved error handling: if JpegCompressor could not compress the data, switch to StandardJpegCompressor and try to compress once again. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2580 3789f03b-4d11-0410-bbf8-ca57d06f2519 --- diff --git a/common/rfb/JpegEncoder.cxx b/common/rfb/JpegEncoder.cxx index f3dbdeed..4542da41 100644 --- a/common/rfb/JpegEncoder.cxx +++ b/common/rfb/JpegEncoder.cxx @@ -133,9 +133,17 @@ void JpegEncoder::writeRect(PixelBuffer* pb, const Rect& r) const rdr::U32* pixels = (const rdr::U32 *)pb->getPixelsR(r, &stride); const PixelFormat& fmt = pb->getPF(); - // Encode data + // Try to encode data jcomp->compress(pixels, &fmt, r.width(), r.height(), stride); + // If not successful, switch to StandardJpegCompressor + if (jcomp->getDataLength() == 0) { + vlog.info("switching to standard software JPEG compressor"); + delete jcomp; + jcomp = new StandardJpegCompressor; + jcomp->setQuality(qualityMap[6]); + } + // Write Tight-encoded header and JPEG data. os->writeU8(0x09 << 4); os->writeCompactLength(jcomp->getDataLength());