Try to give a better error when we fail to start J2K encoding
authorCarl Hetherington <cth@carlh.net>
Mon, 13 Apr 2020 22:44:33 +0000 (00:44 +0200)
committerCarl Hetherington <cth@carlh.net>
Mon, 13 Apr 2020 22:44:33 +0000 (00:44 +0200)
(probably because of a lack of addressable RAM).

See #1540.

src/lib/j2k_encoder.cc
src/lib/job.cc

index ac420517f9ea27f9617d233ac300d98686e450c3..3d7b342da42d066958d643c9a64e4ea48a51b36d 100644 (file)
@@ -116,6 +116,9 @@ J2KEncoder::end ()
 
        terminate_threads ();
 
+       /* Something might have been thrown during terminate_threads */
+       rethrow ();
+
        LOG_GENERAL (N_("Mopping up %1"), _queue.size());
 
        /* The following sequence of events can occur in the above code:
index a83249e798feba99abafc2a09f1393eb8cf5dc18..a4ea9ec6f033d04d65302186dfe268572a49972b 100644 (file)
@@ -122,6 +122,42 @@ Job::run_wrapper ()
                set_progress (1);
                set_state (FINISHED_ERROR);
 
+       } catch (dcp::StartCompressionError& e) {
+
+               bool done = false;
+
+#ifdef DCPOMATIC_WINDOWS
+#if (__GNUC__ && !__x86_64__)
+               /* 32-bit */
+               set_error (
+                       _("Failed to encode the DCP."),
+                       _("This error has probably occurred because you are running the 32-bit version of DCP-o-matic and "
+                         "trying to use too many encoding threads.  Please reduce the 'number of threads DCP-o-matic should "
+                         "use' in the General tab of Preferences and try again.")
+                       );
+               done = true;
+#else
+               /* 64-bit */
+               if (running_32_on_64()) {
+                       set_error (
+                               _("Failed to encode the DCP."),
+                               _("This error has probably occurred because you are running the 32-bit version of DCP-o-matic.  Please re-install DCP-o-matic with the 64-bit installer and try again.")
+                               );
+                       done = true;
+               }
+#endif
+#endif
+
+               if (!done) {
+                       set_error (
+                               e.what (),
+                               string (_("It is not known what caused this error.")) + "  " + REPORT_PROBLEM
+                               );
+               }
+
+               set_progress (1);
+               set_state (FINISHED_ERROR);
+
        } catch (OpenFileError& e) {
 
                set_error (