mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 02:17:34 +09:00
[BETA] macOS support
This commit is contained in:
parent
ec56576a88
commit
2ab5bcf93d
32 changed files with 393 additions and 1386 deletions
37
media/ffvpx/libavcodec/x86/x86util_stub.c
Normal file
37
media/ffvpx/libavcodec/x86/x86util_stub.c
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
// Stub x86 init hooks for Darwin when x86 asm objects are disabled.
|
||||
#include <stdint.h>
|
||||
|
||||
#include "libavcodec/avcodec.h"
|
||||
#include "libavcodec/dct.h"
|
||||
#include "libavcodec/fdctdsp.h"
|
||||
#include "libavcodec/fft.h"
|
||||
#include "libavcodec/idctdsp.h"
|
||||
|
||||
void ff_dct_init_x86(DCTContext *s) {
|
||||
(void)s;
|
||||
}
|
||||
|
||||
void ff_fdctdsp_init_x86(FDCTDSPContext *c, AVCodecContext *avctx,
|
||||
unsigned high_bit_depth) {
|
||||
(void)c;
|
||||
(void)avctx;
|
||||
(void)high_bit_depth;
|
||||
}
|
||||
|
||||
void ff_fft_init_x86(FFTContext *s) {
|
||||
(void)s;
|
||||
}
|
||||
|
||||
int ff_init_scantable_permutation_x86(uint8_t *idct_permutation,
|
||||
enum idct_permutation_type perm_type) {
|
||||
(void)idct_permutation;
|
||||
(void)perm_type;
|
||||
return 0;
|
||||
}
|
||||
|
||||
void ff_idctdsp_init_x86(IDCTDSPContext *c, AVCodecContext *avctx,
|
||||
unsigned high_bit_depth) {
|
||||
(void)c;
|
||||
(void)avctx;
|
||||
(void)high_bit_depth;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue