diff options
author | trav90 <travawine@protonmail.ch> | 2018-10-01 10:29:13 -0500 |
---|---|---|
committer | trav90 <travawine@protonmail.ch> | 2018-10-01 10:29:13 -0500 |
commit | 82238ada25de0c0a52e7c74c0636259af7f54c76 (patch) | |
tree | 1b3f9fdcea5d71244a9c91c3601b8018973a1180 /media/ffvpx | |
parent | ebc8d7e3ca8723d815904e6fee6c088c659d6784 (diff) | |
download | uxp-82238ada25de0c0a52e7c74c0636259af7f54c76.tar.gz |
[ffvpx] Remove unneeded libavcodec symbols and dummy functions
Fixes linkage errors on Windows.
Diffstat (limited to 'media/ffvpx')
-rw-r--r-- | media/ffvpx/libavcodec/avcodec.symbols | 3 | ||||
-rw-r--r-- | media/ffvpx/libavcodec/dummy_funcs.c | 7 |
2 files changed, 0 insertions, 10 deletions
diff --git a/media/ffvpx/libavcodec/avcodec.symbols b/media/ffvpx/libavcodec/avcodec.symbols index d34c6ed7ec..0b7c21ccad 100644 --- a/media/ffvpx/libavcodec/avcodec.symbols +++ b/media/ffvpx/libavcodec/avcodec.symbols @@ -51,9 +51,6 @@ av_parser_close av_parser_init av_parser_next av_parser_parse2 -av_rdft_calc -av_rdft_end -av_rdft_init av_register_codec_parser av_register_hwaccel av_shrink_packet diff --git a/media/ffvpx/libavcodec/dummy_funcs.c b/media/ffvpx/libavcodec/dummy_funcs.c index ac0f0b780f..295ee84e1f 100644 --- a/media/ffvpx/libavcodec/dummy_funcs.c +++ b/media/ffvpx/libavcodec/dummy_funcs.c @@ -6,9 +6,7 @@ #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; @@ -819,11 +817,6 @@ 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) {} |