File tree Expand file tree Collapse file tree 9 files changed +20
-5
lines changed
Expand file tree Collapse file tree 9 files changed +20
-5
lines changed Original file line number Diff line number Diff line change 11diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c
2- index 379c167e6f..64a470ab6d 100644
2+ index 0f886713e3..66cfa854e9 100644
33--- a/libavcodec/libx264.c
44+++ b/libavcodec/libx264.c
55@@ -33,10 +33,6 @@
Original file line number Diff line number Diff line change 450450%define CONFIG_LIBXVID 1
451451%define CONFIG_DECKLINK 0
452452%define CONFIG_LIBFDK_AAC 0
453- %define CONFIG_OPENSSL 0
454453%define CONFIG_LIBTLS 0
455454%define CONFIG_GMP 0
456455%define CONFIG_LIBARIBB24 0
529528%define CONFIG_MEDIACODEC 0
530529%define CONFIG_OPENAL 0
531530%define CONFIG_OPENGL 1
531+ %define CONFIG_OPENSSL 0
532532%define CONFIG_POCKETSPHINX 0
533533%define CONFIG_VAPOURSYNTH 0
534534%define CONFIG_ALSA 0
19941994%define CONFIG_MINTERPOLATE_FILTER 1
19951995%define CONFIG_MIX_FILTER 1
19961996%define CONFIG_MONOCHROME_FILTER 1
1997+ %define CONFIG_MORPHO_FILTER 1
19971998%define CONFIG_MPDECIMATE_FILTER 1
19981999%define CONFIG_MSAD_FILTER 1
19992000%define CONFIG_NEGATE_FILTER 1
Original file line number Diff line number Diff line change 509509#define CONFIG_LIBXVID 1
510510#define CONFIG_DECKLINK 0
511511#define CONFIG_LIBFDK_AAC 0
512- #define CONFIG_OPENSSL 0
513512#define CONFIG_LIBTLS 0
514513#define CONFIG_GMP 0
515514#define CONFIG_LIBARIBB24 0
588587#define CONFIG_MEDIACODEC 0
589588#define CONFIG_OPENAL 0
590589#define CONFIG_OPENGL 1
590+ #define CONFIG_OPENSSL 0
591591#define CONFIG_POCKETSPHINX 0
592592#define CONFIG_VAPOURSYNTH 0
593593#define CONFIG_ALSA 0
21172117#define CONFIG_MINTERPOLATE_FILTER 1
21182118#define CONFIG_MIX_FILTER 1
21192119#define CONFIG_MONOCHROME_FILTER 1
2120+ #define CONFIG_MORPHO_FILTER 1
21202121#define CONFIG_MPDECIMATE_FILTER 1
21212122#define CONFIG_MSAD_FILTER 1
21222123#define CONFIG_NEGATE_FILTER 1
Original file line number Diff line number Diff line change @@ -149,15 +149,15 @@ EXPORTS
149149 avpriv_dnxhd_get_frame_size
150150 avpriv_dnxhd_get_hr_frame_size
151151 avpriv_dnxhd_get_interlaced
152- avpriv_do_elbg
152+ avpriv_elbg_do
153+ avpriv_elbg_free
153154 avpriv_exif_decode_ifd
154155 avpriv_find_pix_fmt
155156 avpriv_find_start_code
156157 avpriv_fits_header_init
157158 avpriv_fits_header_parse_line
158159 avpriv_get_raw_pix_fmt_tags
159160 avpriv_h264_has_num_reorder_frames
160- avpriv_init_elbg
161161 avpriv_mpeg4audio_get_config2
162162 avpriv_mpegaudio_decode_header
163163 avpriv_packet_list_free
Original file line number Diff line number Diff line change 347347 <ClCompile Include =" ..\libavfilter\vf_minterpolate.c" />
348348 <ClCompile Include =" ..\libavfilter\vf_mix.c" />
349349 <ClCompile Include =" ..\libavfilter\vf_monochrome.c" />
350+ <ClCompile Include =" ..\libavfilter\vf_morpho.c" />
350351 <ClCompile Include =" ..\libavfilter\vf_mpdecimate.c" />
351352 <ClCompile Include =" ..\libavfilter\vf_nlmeans.c" />
352353 <ClCompile Include =" ..\libavfilter\vf_nnedi.c" />
Original file line number Diff line number Diff line change 894894 <ClCompile Include =" ..\libavfilter\vf_monochrome.c" >
895895 <Filter >Source Files\libavfilter</Filter >
896896 </ClCompile >
897+ <ClCompile Include =" ..\libavfilter\vf_morpho.c" >
898+ <Filter >Source Files\libavfilter</Filter >
899+ </ClCompile >
897900 <ClCompile Include =" ..\libavfilter\vf_mpdecimate.c" >
898901 <Filter >Source Files\libavfilter</Filter >
899902 </ClCompile >
Original file line number Diff line number Diff line change @@ -298,6 +298,7 @@ static const AVFilter *filter_list[] = {
298298 & ff_vf_minterpolate ,
299299 & ff_vf_mix ,
300300 & ff_vf_monochrome ,
301+ & ff_vf_morpho ,
301302 & ff_vf_mpdecimate ,
302303 & ff_vf_msad ,
303304 & ff_vf_negate ,
Original file line number Diff line number Diff line change 6363 <ClCompile Include =" ..\libavformat\allformats.c" />
6464 <ClCompile Include =" ..\libavformat\avio.c" />
6565 <ClCompile Include =" ..\libavformat\aviobuf.c" />
66+ <ClCompile Include =" ..\libavformat\demux.c" />
6667 <ClCompile Include =" ..\libavformat\dump.c" />
6768 <ClCompile Include =" ..\libavformat\format.c" />
6869 <ClCompile Include =" ..\libavformat\id3v1.c" />
7475 <ClCompile Include =" ..\libavformat\protocols.c" />
7576 <ClCompile Include =" ..\libavformat\riff.c" />
7677 <ClCompile Include =" ..\libavformat\sdp.c" />
78+ <ClCompile Include =" ..\libavformat\seek.c" />
7779 <ClCompile Include =" ..\libavformat\url.c" />
7880 <ClCompile Include =" ..\libavformat\utils.c" />
7981 <ClCompile Include =" ..\libavformat\file_open.c" />
Original file line number Diff line number Diff line change 4040 <ClCompile Include =" ..\libavformat\aviobuf.c" >
4141 <Filter >Source Files\libavformat</Filter >
4242 </ClCompile >
43+ <ClCompile Include =" ..\libavformat\demux.c" >
44+ <Filter >Source Files\libavformat</Filter >
45+ </ClCompile >
4346 <ClCompile Include =" ..\libavformat\dump.c" >
4447 <Filter >Source Files\libavformat</Filter >
4548 </ClCompile >
7376 <ClCompile Include =" ..\libavformat\sdp.c" >
7477 <Filter >Source Files\libavformat</Filter >
7578 </ClCompile >
79+ <ClCompile Include =" ..\libavformat\seek.c" >
80+ <Filter >Source Files\libavformat</Filter >
81+ </ClCompile >
7682 <ClCompile Include =" ..\libavformat\url.c" >
7783 <Filter >Source Files\libavformat</Filter >
7884 </ClCompile >
You can’t perform that action at this time.
0 commit comments