Skip to content

Commit 5728aba

Browse files
committed
project: Update for recent upstream merge.
1 parent dd1688f commit 5728aba

File tree

9 files changed

+20
-5
lines changed

9 files changed

+20
-5
lines changed

SMP/SMP.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
diff --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 @@

SMP/config.asm

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,6 @@
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
@@ -529,6 +528,7 @@
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
@@ -1994,6 +1994,7 @@
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

SMP/config.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,6 @@
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
@@ -588,6 +587,7 @@
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
@@ -2117,6 +2117,7 @@
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

SMP/libavcodec.def

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

SMP/libavfilter.vcxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,7 @@
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" />

SMP/libavfilter.vcxproj.filters

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -894,6 +894,9 @@
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>

SMP/libavfilter/filter_list.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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,

SMP/libavformat.vcxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
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" />
@@ -74,6 +75,7 @@
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" />

SMP/libavformat.vcxproj.filters

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@
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>
@@ -73,6 +76,9 @@
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>

0 commit comments

Comments
 (0)