summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-12-07fixup! Assert if we're about to set up 0 encoding threads.2904-ssaCarl Hetherington
2024-12-06Assert if we're about to set up 0 encoding threads.Carl Hetherington
2024-12-06Use all cores when encoding in tests.Carl Hetherington
I think this also avoids the possibility of setting the master encoding thread count to 0 by mistake on machines that don't have many cores.
2024-12-06fixup! Fix decoding of SSA subs in files decoded by FFmpeg (#2904).Carl Hetherington
2024-12-05Fix decoding of SSA subs in files decoded by FFmpeg (#2904).Carl Hetherington
Suddenly we have 8 commas, not 9, perhaps because of 29412821241050c846dbceaad4b9752857659977 in ffmpeg (although that's strange, because it was a long time ago).
2024-12-05Fix doubled subtitles (again).Carl Hetherington
This was re-introduced when 94618a724124cbf5fe9f0b47a3fdce601fcd5581 reverted a previous attempt at a fix. At the time I couldn't understand the doubled-subtitles problem, but it's apparent in the test introduced in the next commit. This is another attempt to fix it by only sending a "stop" for a subtitle if we didn't already stop the subtitle because the next one arrived.
2024-12-05Cleanup: use default initializers.Carl Hetherington
2024-12-05Fix comment typo.Carl Hetherington
2024-12-05Missing translators (Roman is r k).Carl Hetherington
2024-12-05Updated fr_FR translation from Laurent Tenzer.Carl Hetherington
2024-12-04Updated ru_RU translation from r k.Carl Hetherington
2024-12-04Don't give an alarming error when there is no assets.xml.Carl Hetherington
2024-12-04Add default grok licence server.Carl Hetherington
2024-11-30Fix mis-handling of reels with Atmos content (#2901).v2.17.26Carl Hetherington
We must have reel boundaries at least on Atmos content boundaries as I don't know for sure how to insert silence into an Atmos stream.
2024-11-29Tidy-up/fix Atmos frame rate checks.Carl Hetherington
2024-11-29Remove config of grok server port (#2900).Carl Hetherington
The server now always uses port 80.
2024-11-29Use snprintf().Carl Hetherington
2024-11-29Cleanup: some coding standard fixes.Carl Hetherington
2024-11-29Abort encode if Grok encoder threads are failing (#2899)Carl Hetherington
2024-11-29Make sure grok isn't enabled for tests.Carl Hetherington
2024-11-29Count errors in Grok threads.Carl Hetherington
2024-11-29Cleanup: improve comment.Carl Hetherington
2024-11-29Cleanup: whitespace.Carl Hetherington
2024-11-29Cleanup: remove unnecessary FrameProxy wrapper to DCPVideo.Carl Hetherington
2024-11-29Cleanup: whitespace and some privacy.Carl Hetherington
2024-11-29Cleanup: remove unnecessary set to nullptr...Carl Hetherington
...now that we're in a destructor, it's clear.
2024-11-29Cleanup: inline shutdown() in the only place it's called.Carl Hetherington
2024-11-29Cleanup: make some methods private.Carl Hetherington
2024-11-29Whitespace cleanups.Carl Hetherington
2024-11-29Merge remote-tracking branch 'origin/main' into v2.17.xCarl Hetherington
2024-11-29Look in another place for Liberation Sans on Fedora 41.Carl Hetherington
2024-11-28Tweak minimum size of GTK3 spin controls.Carl Hetherington
On at least Fedora 41 they are still too narrow in e.g. the reel editor of the editor.
2024-11-28Fix size of spin controls in the editor.Carl Hetherington
2024-11-27Remove beta-grade warning in the Disk Writer.Carl Hetherington
I hope I don't live to regret this.
2024-11-26Allow creation of ARM64 .debs.Carl Hetherington
2024-11-26Make sure that debian/files is closed after writing it.Carl Hetherington
2024-11-26Remove unused file.Carl Hetherington
2024-11-24Fix build on Linux/ARM.Carl Hetherington
2024-11-24Allow building of aarch64 Linux packages.Carl Hetherington
2024-11-24Remove unwanted credit.v2.17.25Carl Hetherington
2024-11-23Only support Grok on Ubuntu 24.04.Carl Hetherington
That's what Aaron wants to support.
2024-11-20Updated zh_CN translation from Kahn Li.v2.17.24Carl Hetherington
2024-11-20Merge branch 'main' into v2.17.xCarl Hetherington
2024-11-17Remove support for 32-bit Linux packaging.Carl Hetherington
2024-11-17Fix multi-selection of content.v2.16.98Carl Hetherington
In order to add ellipsizing of text we're using this "mode" of wxListCtrl where `OnGetItemAttr` is called to get information about an item. This was intended to support very long lists, so that the whole list does not have to be given to wxListCtrl. However, in this mode, multiple selections (e.g. shift-click) are just not reported. There's a 13-year-old wxWidgets bug to fix this: https://github.com/wxWidgets/wxWidgets/issues/4541 and there is mentioned the workaround applied here - listen to the focused event. We have to delay it because on macOS (at least) the selection state is not updated until after the focused event.
2024-11-17Fix "multiple" button alignment on macOS.Carl Hetherington
2024-11-13Updated nl_NL translation from Rob van Nieuwkerk.Carl Hetherington
2024-11-11Use a better colour for the name examples in dark UIs (#2888).Carl Hetherington
2024-11-10Merge remote-tracking branch 'origin/main' into v2.17.xCarl Hetherington
2024-11-10Fix examination logic.v2.16.97Carl Hetherington
Before we would stop if there was one audio stream and the first packet was from that stream; we would not carry on to find the video.