8d13862a00
The audio input and output issues have been resolved. News: https://www.openshot.org/blog/2026/04/06/openshot-351-faster-performance-smoother-editing-better-previews/ Changelog: https://github.com/OpenShot/libopenshot/releases/tag/v0.7.0 PR: 294379 Sponsored by: UNIS Labs MFH: 2026Q2
12 lines
425 B
C
12 lines
425 B
C
--- src/FFmpegUtilities.h.orig 2026-04-02 23:34:37 UTC
|
|
+++ src/FFmpegUtilities.h
|
|
@@ -411,7 +411,7 @@ inline static void* aligned_malloc(size_t size, size_t
|
|
{
|
|
#if defined(_WIN32)
|
|
return _aligned_malloc(size, alignment);
|
|
-#elif defined(__APPLE__) || defined(__linux__)
|
|
+#elif defined(__APPLE__) || defined(__unix__)
|
|
void* ptr = nullptr;
|
|
if (posix_memalign(&ptr, alignment, size) != 0)
|
|
return nullptr;
|