mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-05 03:12:18 +00:00
32fd74ff39
* Fix (multimedia arches): Commit this and pray it works because my local repo is cursed * Update anda.hcl Signed-off-by: Gil <rockgrub@protonmail.com> * Update anda.hcl Signed-off-by: Gil <rockgrub@protonmail.com> * Fix?: Try this Signed-off-by: Gil <rockgrub@protonmail.com> * Fix?: Export flags for arch Signed-off-by: Gil <rockgrub@protonmail.com> * Revert that, didn't help Signed-off-by: Gil <rockgrub@protonmail.com> * Trying something Signed-off-by: Gil <rockgrub@protonmail.com> * Not sure why %else failed but let's try this because it's better anyway Signed-off-by: Gil <rockgrub@protonmail.com> * I guess get rid of %else for now? Signed-off-by: Gil <rockgrub@protonmail.com> * It was %autosetup Signed-off-by: Gil <rockgrub@protonmail.com> * Macros are agony? Signed-off-by: Gil <rockgrub@protonmail.com> * That just broke patching and didn't help so don't do that!! Signed-off-by: Gil <rockgrub@protonmail.com> * Fix: Patch to not try to include AVX2 files for x86 * Fix (davs2): Disable NASM for i686 Signed-off-by: Gil <rockgrub@protonmail.com> * Fix: I've had it --------- Signed-off-by: Gil <rockgrub@protonmail.com>
15 lines
420 B
Diff
15 lines
420 B
Diff
--- a/source/decoder/uavs3d.c
|
|
+++ b/source/decoder/uavs3d.c
|
|
@@ -1083,11 +1083,6 @@
|
|
uavs3d_funs_init_arm64();
|
|
#elif defined(ENABLE_FUNCTION_ARM32)
|
|
uavs3d_funs_init_armv7();
|
|
-#elif defined(ENABLE_FUNCTION_X86)
|
|
- uavs3d_funs_init_sse();
|
|
- if (uavs3d_simd_avx_level(NULL) >= 2) {
|
|
- uavs3d_funs_init_avx2();
|
|
- }
|
|
#endif
|
|
|
|
ctx->dec_cfg.frm_threads = COM_CLIP3(1, 32, ctx->dec_cfg.frm_threads);
|