summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-04-22bumpmore-warning-fixesCarl Hetherington
2022-04-22Missing override.Carl Hetherington
2022-04-22Revert "Adjust handling of -Wsuggest-override"Carl Hetherington
This reverts commit e7e4af869f7144fa9a265ccf1e15c7b2f182ac2c. I misunderstood what was going on, and we were just missing some DCPOMATIC_{DIS,EN}ABLE_WARNINGS calls.
2022-04-21Disable warnings around all wx includes.Carl Hetherington
2022-04-21Tidying.Carl Hetherington
2022-04-21Adjust handling of -Wsuggest-overrideCarl Hetherington
It seems that on older GCCs (e.g. the one from Ubuntu 18.04) the pragma to temporarily turn off this warning does not work, so here we only use it on newer GCCs where we can turn it off for libraries that trigger the warning (mostly asdcplib, but also wxWidgets).
2022-04-21Revert "Try to fix some warnings when libdcp include asdcplib."Carl Hetherington
This reverts commit 0582196d78d27c349e5be8f87186499acb4b322f.
2022-04-21Try to fix some warnings when libdcp include asdcplib.Carl Hetherington
2022-04-20Lookup the correct DCNC code to use for languages rather than justCarl Hetherington
using the language's subtag (#2235).
2022-04-20Use std::vector in AudioBuffers (#2236).Carl Hetherington
2022-04-20Cleanup: improve some variable names.Carl Hetherington
2022-04-20Add ScopeGuard.Carl Hetherington
2022-04-20Add button to use same fades for audio as video (#2230).Carl Hetherington
2022-04-20Tidying.Carl Hetherington
2022-04-20Replace encrypted content with black if we have no key (#2234).Carl Hetherington
2022-04-20C++11 tidying.Carl Hetherington
2022-04-20Fix creation of dcpdig files in projects that make VFs (#2109).Carl Hetherington
Previously we would always get keys from the project which was wrong with assets that already have their own key.
2022-04-20Support DCP digest files (#2109).Carl Hetherington
2022-04-20Remove DCP class and replace its functionality with a plain method in libdcp.Carl Hetherington
2022-04-20Tidying.Carl Hetherington
2022-04-20Clean up a hack by adding DCPTranscodeJob.Carl Hetherington
2022-04-20Move make_dcp() out of Film (#2132).Carl Hetherington
2022-04-17Add more missing override labels.Carl Hetherington
2022-04-17Bump libsub for override warning fix.Carl Hetherington
2022-04-17Add deps for Ubuntu 22.04.Carl Hetherington
2022-04-17Missing override label.Carl Hetherington
2022-04-17Remove some commented-out code.Carl Hetherington
2022-04-09C++11 tidying.Carl Hetherington
2022-04-09Warn about missing override labels.Carl Hetherington
2022-04-09Add some missing override labels.Carl Hetherington
2022-04-09Fix some comment typos.Carl Hetherington
2022-04-08Update supporters list.v2.16.9Carl Hetherington
2022-04-08More missing override labels.Carl Hetherington
2022-04-08More missing override labels.Carl Hetherington
2022-04-08Another missing override label.Carl Hetherington
2022-04-08Add some missing override labels.Carl Hetherington
2022-04-08Guess video range better when importing 2.14.x projects (#2227).Carl Hetherington
2022-04-07Cleanup: tidying.Carl Hetherington
2022-04-07Remove erroneous comment.Carl Hetherington
2022-04-07Cleanup: remove unused parameter to PlayerVideo::force.Carl Hetherington
2022-04-07Cleanup: use a vector instead of a raw array.Carl Hetherington
2022-04-05Another missing #include.Carl Hetherington
2022-04-05Missing #include.Carl Hetherington
2022-04-04Add fade in/out option to the content audio tab (#1026).Carl Hetherington
2022-04-04Cleanup: move some methods from util to memory_util.Carl Hetherington
2022-04-04Cleanup: move some methods from util to maths_util.Carl Hetherington
2022-04-03Cleanup: move stride_round_up into the only place it is used.Carl Hetherington
2022-04-03C++11 and whitespace cleanups.Carl Hetherington
2022-04-02Add button to send test emails in the mail server prefs (#2216).Carl Hetherington
2022-03-30Fix writing of planar audio to export buffers in some cases (#2223).Carl Hetherington
Previously we did not take into account alignment padding that can exist with FLTP samples; each channel's block of samples can have a gap between. This doesn't happen with the normal 1024 sample blocks; only when flushing at the end, when we write shorter blocks. Not doing this right meant that we were passing uninitialised memory to aacenc which sometimes responded by returning an EINVAL due to one of its internal calculations returning a NaN.