reticulatedpines
reticulatedpines
Possible regression from 1.0.0, it seems that 1.1.0 doesn't let multiprocessing workers exit (even though they join). This means the main script also refuses to exit. Only tested on Linux...
Hi, I was using your code on some fairly large files and writing out the ELF was quite slow. Most of this was in bytes_xor(), so I found a faster...
These two lines in reboot.c got swapped at some point: ``` MEM(0xBFE01FC4) = 0x10; // unknown meaning MEM(0xBFE01FC8) = ROMBASEADDR; // pointer used by 2nd core to run 2nd stage...
In multiple places, we build up a file using >> with shell commands for concatenating output. If the target file is a dependency for a make target, e.g. version.c, which...
Generally, it's a bad idea to have macros that act like functions. Instead, use functions, and let the compiler optimise. You can force inline if you really want. imath.h does...
Spotted with dual_iso. shoot.c called registered cbrs: ``` #if defined(CONFIG_MODULES) module_exec_cbr(CBR_SHOOT_TASK); #endif ``` These are listed at the end of dual_iso.c: ``` MODULE_CBR(CBR_SHOOT_TASK, isoless_refresh, CTX_SHOOT_TASK) MODULE_CBR(CBR_SHOOT_TASK, isoless_playback_fix, CTX_SHOOT_TASK) ``` Also...
Hi, first, thanks for ddcutil, it's a real time saver for me! A recent system update, probably ddcutil going to v 2, has made an existing scripted command very slow....
Make a way to build that is cleaner and more repeatable. Probably docker. This isn't considered done until it's been tested by others and is reliable. This is likely to...
What features currently absent from this repo, should exist on old cams, before we can release builds for them? Possible features: - increased MOV time limit - improved real-time preview...
We've had some discussion on this previously - should we change the build process so ML builds are, by default, obviously not official release builds? Probably some change to GUI...