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 f3dbdee..4542da4 100644
--- a/common/rfb/JpegEncoder.cxx
+++ b/common/rfb/JpegEncoder.cxx
@@ -133,9 +133,17 @@
   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());