From 616e5ef2845cd46dd46a4f7c9b2722dcf4d8a876 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Mon, 3 Apr 2017 23:57:57 +0200 Subject: [PATCH] [DEBUG] missing some files --- generated/bsf_list.c | 18 ++++++++++++++++++ generated/protocol_list.c | 13 +++++++++++++ lutin_ffmpeg-avcodec.py | 3 ++- lutin_ffmpeg-avformat.py | 3 ++- 4 files changed, 35 insertions(+), 2 deletions(-) create mode 100644 generated/bsf_list.c create mode 100644 generated/protocol_list.c diff --git a/generated/bsf_list.c b/generated/bsf_list.c new file mode 100644 index 0000000..e80fcdc --- /dev/null +++ b/generated/bsf_list.c @@ -0,0 +1,18 @@ +static const AVBitStreamFilter *bitstream_filters[] = { + &ff_aac_adtstoasc_bsf, + &ff_chomp_bsf, + &ff_dump_extradata_bsf, + &ff_dca_core_bsf, + &ff_h264_mp4toannexb_bsf, + &ff_hevc_mp4toannexb_bsf, + &ff_imx_dump_header_bsf, + &ff_mjpeg2jpeg_bsf, + &ff_mjpega_dump_header_bsf, + &ff_mp3_header_decompress_bsf, + &ff_mpeg4_unpack_bframes_bsf, + &ff_mov2textsub_bsf, + &ff_noise_bsf, + &ff_remove_extradata_bsf, + &ff_text2movsub_bsf, + &ff_vp9_superframe_bsf, + NULL }; diff --git a/generated/protocol_list.c b/generated/protocol_list.c new file mode 100644 index 0000000..33d7008 --- /dev/null +++ b/generated/protocol_list.c @@ -0,0 +1,13 @@ +static const URLProtocol *url_protocols[] = { + &ff_ffrtmphttp_protocol, + &ff_file_protocol, + &ff_hls_protocol, + &ff_http_protocol, + &ff_mmsh_protocol, + &ff_mmst_protocol, + &ff_rtmp_protocol, + &ff_rtmpt_protocol, + &ff_rtp_protocol, + &ff_tcp_protocol, + &ff_udp_protocol, + NULL }; diff --git a/lutin_ffmpeg-avcodec.py b/lutin_ffmpeg-avcodec.py index a555ce2..1f144de 100644 --- a/lutin_ffmpeg-avcodec.py +++ b/lutin_ffmpeg-avcodec.py @@ -979,7 +979,8 @@ def configure(target, my_module): #TODO : this is bad ... my_module.add_header_file([ - 'ffmpeg/libavcodec/bsf_list.c', + #'ffmpeg/libavcodec/bsf_list.c', + 'generated/bsf_list.c', ], destination_path="libavcodec") """ diff --git a/lutin_ffmpeg-avformat.py b/lutin_ffmpeg-avformat.py index dbce801..2dde61d 100644 --- a/lutin_ffmpeg-avformat.py +++ b/lutin_ffmpeg-avformat.py @@ -461,7 +461,8 @@ def configure(target, my_module): ]) #TODO : this is bad ... my_module.add_header_file([ - 'ffmpeg/libavformat/protocol_list.c', + #'ffmpeg/libavformat/protocol_list.c', + 'generated/protocol_list.c', ], destination_path="libavformat") my_module.compile_version("c", 1999)