<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dcpomatic/test, branch combine</title>
<subtitle>DCP-o-matic DCP tools</subtitle>
<id>https://git.carlh.net/cgit/dcpomatic/atom?h=combine</id>
<link rel='self' href='https://git.carlh.net/cgit/dcpomatic/atom?h=combine'/>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/dcpomatic/'/>
<updated>2020-08-05T19:46:44Z</updated>
<entry>
<title>Allow export with one audio stream per channel.</title>
<updated>2020-08-05T19:46:44Z</updated>
<author>
<name>Carl Hetherington</name>
<email>cth@carlh.net</email>
</author>
<published>2020-08-05T16:32:59Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/dcpomatic/commit/?id=010a6240453384e35d4aa848af00ed58244fe16d'/>
<id>urn:sha1:010a6240453384e35d4aa848af00ed58244fe16d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add unit test for pulldown detection.</title>
<updated>2020-08-03T07:51:43Z</updated>
<author>
<name>Carl Hetherington</name>
<email>cth@carlh.net</email>
</author>
<published>2020-08-03T07:51:43Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/dcpomatic/commit/?id=23804b8beddd616cef60900d6e51deb7788cbd79'/>
<id>urn:sha1:23804b8beddd616cef60900d6e51deb7788cbd79</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix bugs in thread termination causing occasional pthread</title>
<updated>2020-07-29T18:22:54Z</updated>
<author>
<name>Carl Hetherington</name>
<email>cth@carlh.net</email>
</author>
<published>2020-07-29T18:22:54Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/dcpomatic/commit/?id=e3c7656f9dc0acbaf518c051b847ee2e4eb7ba23'/>
<id>urn:sha1:e3c7656f9dc0acbaf518c051b847ee2e4eb7ba23</id>
<content type='text'>
assertion failures.

Before this, it was possible for J2KEncoder::terminate_threads()
to finish without terminating all threads if the thread _running_
terminate_threads() was itself interrupt()ed.

This is because the thread_group::join_all() in terminate_threads()
is an interruption point, so it was possible it not to complete
but instead to throw interrupted_exception.  Then the owning
J2KEncoder would be torn down but the threads would still be running,
causing use-after-frees.

This commit adds some boost::this_thread::disable_interruption
objects to ensure that the owning thread is not interrupted while
it is being destroyed.

Also tidy up code that does this stuff, assuming that it's safe
to not call thread::joinable but instead do

thread.interrupt();
try {
  thread.join();
} catch (...) {}
</content>
</entry>
<entry>
<title>Add a test to trigger #1786 - crash when exporting 7.1 project to MP4.</title>
<updated>2020-07-28T09:24:31Z</updated>
<author>
<name>Carl Hetherington</name>
<email>cth@carlh.net</email>
</author>
<published>2020-07-27T21:48:05Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/dcpomatic/commit/?id=9bcaf131efdbfa5870374def18e2fdee9edd281c'/>
<id>urn:sha1:9bcaf131efdbfa5870374def18e2fdee9edd281c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Disable warnings from magick.</title>
<updated>2020-07-26T19:30:59Z</updated>
<author>
<name>Carl Hetherington</name>
<email>cth@carlh.net</email>
</author>
<published>2020-07-26T17:54:34Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/dcpomatic/commit/?id=0d711edad0694ee5f5c735b221d52387499e2d36'/>
<id>urn:sha1:0d711edad0694ee5f5c735b221d52387499e2d36</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix test warning</title>
<updated>2020-07-26T19:30:53Z</updated>
<author>
<name>Carl Hetherington</name>
<email>cth@carlh.net</email>
</author>
<published>2020-07-26T00:28:59Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/dcpomatic/commit/?id=89504842f5aff01ac8a8e46ec48eea0a14235739'/>
<id>urn:sha1:89504842f5aff01ac8a8e46ec48eea0a14235739</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Ignore libxml++ warnings in a nicer way.</title>
<updated>2020-07-26T19:30:53Z</updated>
<author>
<name>Carl Hetherington</name>
<email>cth@carlh.net</email>
</author>
<published>2020-07-26T00:26:17Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/dcpomatic/commit/?id=2bec3708fc744c18128c5bdb4c2a332f5c8eb283'/>
<id>urn:sha1:2bec3708fc744c18128c5bdb4c2a332f5c8eb283</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Make Atmos content work more like other content.  Now its MXFs</title>
<updated>2020-06-19T13:07:30Z</updated>
<author>
<name>Carl Hetherington</name>
<email>cth@carlh.net</email>
</author>
<published>2020-06-19T11:30:02Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/dcpomatic/commit/?id=ca981c8cfa23111e92be329f1c2dfbe3a07b4247'/>
<id>urn:sha1:ca981c8cfa23111e92be329f1c2dfbe3a07b4247</id>
<content type='text'>
are re-written, meaning that they can be encrypted.

This (along with the libdcp update) also fixes assorted Atmos bugs.
</content>
</entry>
<entry>
<title>Fix error when exporting stereo projects with "mixdown to stereo"</title>
<updated>2020-06-14T20:12:51Z</updated>
<author>
<name>Carl Hetherington</name>
<email>cth@carlh.net</email>
</author>
<published>2020-06-14T20:12:51Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/dcpomatic/commit/?id=a863000bf1b7bdcd67286206916f5f9c4fdbd844'/>
<id>urn:sha1:a863000bf1b7bdcd67286206916f5f9c4fdbd844</id>
<content type='text'>
set.
</content>
</entry>
<entry>
<title>Update test/data for removed Film metadata tags Signed and UploadAfterMakeDCP</title>
<updated>2020-06-11T17:18:17Z</updated>
<author>
<name>Carl Hetherington</name>
<email>cth@carlh.net</email>
</author>
<published>2020-06-11T17:18:17Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/dcpomatic/commit/?id=b3b9524e043303abdc0cb80ccd3d4abc0ab7ba98'/>
<id>urn:sha1:b3b9524e043303abdc0cb80ccd3d4abc0ab7ba98</id>
<content type='text'>
</content>
</entry>
</feed>
