mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 08:18:41 +09:00
Merge remote-tracking branch 'origin/tracking' into custom
This commit is contained in:
commit
8d23342d11
3 changed files with 20 additions and 0 deletions
|
|
@ -5,7 +5,9 @@
|
|||
|
||||
#include "avcodec.h"
|
||||
|
||||
typedef struct FFTContext FFTContext;
|
||||
typedef struct H264PredContext H264PredContext;
|
||||
typedef struct RDFTContext RDFTContext;
|
||||
typedef struct VideoDSPContext VideoDSPContext;
|
||||
typedef struct VP8DSPContext VP8DSPContext;
|
||||
typedef struct VP9DSPContext VP9DSPContext;
|
||||
|
|
@ -853,6 +855,11 @@ AVBitStreamFilter ff_noise_bsf;
|
|||
AVBitStreamFilter ff_remove_extradata_bsf;
|
||||
AVBitStreamFilter ff_text2movsub_bsf;
|
||||
|
||||
void ff_fft_init_aarch64(FFTContext *s) {}
|
||||
void ff_fft_init_arm(FFTContext *s) {}
|
||||
void ff_fft_init_mips(FFTContext *s) {}
|
||||
void ff_fft_init_ppc(FFTContext *s) {}
|
||||
void ff_rdft_init_arm(RDFTContext *s) {}
|
||||
void ff_h264_pred_init_aarch64(H264PredContext *h, int codec_id,
|
||||
const int bit_depth,
|
||||
const int chroma_format_idc) {}
|
||||
|
|
|
|||
|
|
@ -157,6 +157,13 @@ SOURCES += [
|
|||
'xiph.c'
|
||||
]
|
||||
|
||||
if CONFIG['MOZ_LIBAV_FFT']:
|
||||
SOURCES += [
|
||||
'avfft.c',
|
||||
'fft_float.c',
|
||||
'rdft.c',
|
||||
]
|
||||
|
||||
SYMBOLS_FILE = 'avcodec.symbols'
|
||||
NO_VISIBILITY_FLAGS = True
|
||||
|
||||
|
|
|
|||
|
|
@ -75,6 +75,12 @@ SOURCES += [
|
|||
'vp9mc_16bpp.asm',
|
||||
]
|
||||
|
||||
if CONFIG['MOZ_LIBAV_FFT']:
|
||||
SOURCES += [
|
||||
'fft.asm',
|
||||
'fft_init.c',
|
||||
]
|
||||
|
||||
FINAL_LIBRARY = 'mozavcodec'
|
||||
|
||||
include('/media/ffvpx/ffvpxcommon.mozbuild')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue