shotcut/sharedframe_mlt32_fix.diff
Martin Gansser 1116a6f28e Update to version 25.12.30
Add sharedframe_mlt32_fix.diff
2025-12-31 13:27:56 +01:00

15 lines
402 B
Diff

--- src/sharedframe.cpp.orig 2025-12-31 13:03:06.157962326 +0100
+++ src/sharedframe.cpp 2025-12-31 13:04:02.205848995 +0100
@@ -19,6 +19,12 @@
#include <mutex>
+// --- MLT 7.32 Compatibility Patch ---
+#ifndef mlt_image_rgba64
+#define mlt_image_rgba64 mlt_image_rgba
+#endif
+// --- End MLT 7.32 Compatibility Patch ---
+
void destroyFrame(void *p)
{
delete static_cast<Mlt::Frame *>(p);