mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 10:57:34 +09:00
[BETA] macOS support
This commit is contained in:
parent
ec56576a88
commit
2ab5bcf93d
32 changed files with 393 additions and 1386 deletions
22
media/ffvpx/libavutil/x86/x86util_stub.c
Normal file
22
media/ffvpx/libavutil/x86/x86util_stub.c
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
// Empty stub to satisfy build system on macOS
|
||||
#include <stdint.h>
|
||||
|
||||
// CPU flags: return 0 (no SIMD)
|
||||
int ff_get_cpu_flags_x86(void) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Fixed DSP: do nothing
|
||||
void ff_fixed_dsp_init_x86(void *dsp) {
|
||||
(void)dsp;
|
||||
}
|
||||
|
||||
// Float DSP: do nothing
|
||||
void ff_float_dsp_init_x86(void *fdsp) {
|
||||
(void)fdsp;
|
||||
}
|
||||
|
||||
// LLS init: do nothing
|
||||
void ff_init_lls_x86(void *lls) {
|
||||
(void)lls;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue