提交 a04478cb 编写于 作者: M Matt Oliver

projects: Update for recent upstream merge.

上级 e2799ffc
...@@ -409,6 +409,7 @@ ...@@ -409,6 +409,7 @@
%define CONFIG_TRANSCODING_EXAMPLE 0 %define CONFIG_TRANSCODING_EXAMPLE 0
%define CONFIG_AVISYNTH 1 %define CONFIG_AVISYNTH 1
%define CONFIG_BZLIB 1 %define CONFIG_BZLIB 1
%define CONFIG_CHROMAPRINT 0
%define CONFIG_CRYSTALHD 0 %define CONFIG_CRYSTALHD 0
%define CONFIG_DECKLINK 0 %define CONFIG_DECKLINK 0
%define CONFIG_FREI0R 0 %define CONFIG_FREI0R 0
...@@ -788,6 +789,7 @@ ...@@ -788,6 +789,7 @@
%define CONFIG_RV40_DECODER 1 %define CONFIG_RV40_DECODER 1
%define CONFIG_S302M_DECODER 1 %define CONFIG_S302M_DECODER 1
%define CONFIG_SANM_DECODER 1 %define CONFIG_SANM_DECODER 1
%define CONFIG_SCREENPRESSO_DECODER 1
%define CONFIG_SGI_DECODER 1 %define CONFIG_SGI_DECODER 1
%define CONFIG_SGIRLE_DECODER 1 %define CONFIG_SGIRLE_DECODER 1
%define CONFIG_SMACKER_DECODER 1 %define CONFIG_SMACKER_DECODER 1
...@@ -1917,6 +1919,7 @@ ...@@ -1917,6 +1919,7 @@
%define CONFIG_WTV_MUXER 1 %define CONFIG_WTV_MUXER 1
%define CONFIG_WV_MUXER 1 %define CONFIG_WV_MUXER 1
%define CONFIG_YUV4MPEGPIPE_MUXER 1 %define CONFIG_YUV4MPEGPIPE_MUXER 1
%define CONFIG_CHROMAPRINT_MUXER 0
%define CONFIG_LIBNUT_MUXER 0 %define CONFIG_LIBNUT_MUXER 0
%define CONFIG_ALSA_OUTDEV 0 %define CONFIG_ALSA_OUTDEV 0
%define CONFIG_CACA_OUTDEV 0 %define CONFIG_CACA_OUTDEV 0
......
...@@ -448,6 +448,7 @@ ...@@ -448,6 +448,7 @@
#define CONFIG_TRANSCODING_EXAMPLE 0 #define CONFIG_TRANSCODING_EXAMPLE 0
#define CONFIG_AVISYNTH 1 #define CONFIG_AVISYNTH 1
#define CONFIG_BZLIB 1 #define CONFIG_BZLIB 1
#define CONFIG_CHROMAPRINT 0
#define CONFIG_CRYSTALHD 0 #define CONFIG_CRYSTALHD 0
#define CONFIG_DECKLINK 0 #define CONFIG_DECKLINK 0
#define CONFIG_FREI0R 0 #define CONFIG_FREI0R 0
...@@ -835,6 +836,7 @@ ...@@ -835,6 +836,7 @@
#define CONFIG_RV40_DECODER 1 #define CONFIG_RV40_DECODER 1
#define CONFIG_S302M_DECODER 1 #define CONFIG_S302M_DECODER 1
#define CONFIG_SANM_DECODER 1 #define CONFIG_SANM_DECODER 1
#define CONFIG_SCREENPRESSO_DECODER 1
#define CONFIG_SGI_DECODER 1 #define CONFIG_SGI_DECODER 1
#define CONFIG_SGIRLE_DECODER 1 #define CONFIG_SGIRLE_DECODER 1
#define CONFIG_SMACKER_DECODER 1 #define CONFIG_SMACKER_DECODER 1
...@@ -1964,6 +1966,7 @@ ...@@ -1964,6 +1966,7 @@
#define CONFIG_WTV_MUXER 1 #define CONFIG_WTV_MUXER 1
#define CONFIG_WV_MUXER 1 #define CONFIG_WV_MUXER 1
#define CONFIG_YUV4MPEGPIPE_MUXER 1 #define CONFIG_YUV4MPEGPIPE_MUXER 1
#define CONFIG_CHROMAPRINT_MUXER 0
#define CONFIG_LIBNUT_MUXER 0 #define CONFIG_LIBNUT_MUXER 0
#define CONFIG_ALSA_OUTDEV 0 #define CONFIG_ALSA_OUTDEV 0
#define CONFIG_CACA_OUTDEV 0 #define CONFIG_CACA_OUTDEV 0
......
...@@ -125,8 +125,10 @@ ...@@ -125,8 +125,10 @@
<YASM Include="..\libavcodec\x86\vorbisdsp.asm" /> <YASM Include="..\libavcodec\x86\vorbisdsp.asm" />
<YASM Include="..\libavcodec\x86\vp6dsp.asm" /> <YASM Include="..\libavcodec\x86\vp6dsp.asm" />
<YASM Include="..\libavcodec\x86\vp9intrapred.asm" /> <YASM Include="..\libavcodec\x86\vp9intrapred.asm" />
<YASM Include="..\libavcodec\x86\vp9intrapred_16bpp.asm" />
<YASM Include="..\libavcodec\x86\vp9itxfm.asm" /> <YASM Include="..\libavcodec\x86\vp9itxfm.asm" />
<YASM Include="..\libavcodec\x86\vp9lpf.asm" /> <YASM Include="..\libavcodec\x86\vp9lpf.asm" />
<YASM Include="..\libavcodec\x86\vp9lpf_16bpp.asm" />
<YASM Include="..\libavcodec\x86\vp9mc.asm" /> <YASM Include="..\libavcodec\x86\vp9mc.asm" />
<YASM Include="..\libavcodec\x86\vp9mc_16bpp.asm" /> <YASM Include="..\libavcodec\x86\vp9mc_16bpp.asm" />
</ItemGroup> </ItemGroup>
...@@ -1159,6 +1161,8 @@ ...@@ -1159,6 +1161,8 @@
</ClCompile> </ClCompile>
<ClCompile Include="..\libavcodec\sanm.c"> <ClCompile Include="..\libavcodec\sanm.c">
</ClCompile> </ClCompile>
<ClCompile Include="..\libavcodec\screenpresso.c">
</ClCompile>
<ClCompile Include="..\libavcodec\sgidec.c"> <ClCompile Include="..\libavcodec\sgidec.c">
</ClCompile> </ClCompile>
<ClCompile Include="..\libavcodec\sgienc.c"> <ClCompile Include="..\libavcodec\sgienc.c">
......
...@@ -219,12 +219,18 @@ ...@@ -219,12 +219,18 @@
<YASM Include="..\libavcodec\x86\vp9intrapred.asm"> <YASM Include="..\libavcodec\x86\vp9intrapred.asm">
<Filter>Source Files\libavcodec\x86</Filter> <Filter>Source Files\libavcodec\x86</Filter>
</YASM> </YASM>
<YASM Include="..\libavcodec\x86\vp9intrapred_16bpp.asm">
<Filter>Source Files\libavcodec\x86</Filter>
</YASM>
<YASM Include="..\libavcodec\x86\vp9itxfm.asm"> <YASM Include="..\libavcodec\x86\vp9itxfm.asm">
<Filter>Source Files\libavcodec\x86</Filter> <Filter>Source Files\libavcodec\x86</Filter>
</YASM> </YASM>
<YASM Include="..\libavcodec\x86\vp9lpf.asm"> <YASM Include="..\libavcodec\x86\vp9lpf.asm">
<Filter>Source Files\libavcodec\x86</Filter> <Filter>Source Files\libavcodec\x86</Filter>
</YASM> </YASM>
<YASM Include="..\libavcodec\x86\vp9lpf_16bpp.asm">
<Filter>Source Files\libavcodec\x86</Filter>
</YASM>
<YASM Include="..\libavcodec\x86\vp9mc.asm"> <YASM Include="..\libavcodec\x86\vp9mc.asm">
<Filter>Source Files\libavcodec\x86</Filter> <Filter>Source Files\libavcodec\x86</Filter>
</YASM> </YASM>
...@@ -1733,6 +1739,9 @@ ...@@ -1733,6 +1739,9 @@
<ClCompile Include="..\libavcodec\sanm.c"> <ClCompile Include="..\libavcodec\sanm.c">
<Filter>Source Files\libavcodec</Filter> <Filter>Source Files\libavcodec</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="..\libavcodec\screenpresso.c">
<Filter>Source Files\libavcodec</Filter>
</ClCompile>
<ClCompile Include="..\libavcodec\sgidec.c"> <ClCompile Include="..\libavcodec\sgidec.c">
<Filter>Source Files\libavcodec</Filter> <Filter>Source Files\libavcodec</Filter>
</ClCompile> </ClCompile>
......
...@@ -59,6 +59,7 @@ ...@@ -59,6 +59,7 @@
</ProjectConfiguration> </ProjectConfiguration>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<YASM Include="..\libavfilter\x86\vf_blend.asm" />
<YASM Include="..\libavfilter\x86\vf_fspp.asm" /> <YASM Include="..\libavfilter\x86\vf_fspp.asm" />
<YASM Include="..\libavfilter\x86\vf_gradfun.asm" /> <YASM Include="..\libavfilter\x86\vf_gradfun.asm" />
<YASM Include="..\libavfilter\x86\vf_hqdn3d.asm" /> <YASM Include="..\libavfilter\x86\vf_hqdn3d.asm" />
...@@ -230,6 +231,7 @@ ...@@ -230,6 +231,7 @@
<ClCompile Include="..\libavfilter\vf_blackframe.c"> <ClCompile Include="..\libavfilter\vf_blackframe.c">
</ClCompile> </ClCompile>
<ClCompile Include="..\libavfilter\vf_blend.c"> <ClCompile Include="..\libavfilter\vf_blend.c">
<ObjectFileName>$(IntDir)\libavfilter_vf_blend.obj</ObjectFileName>
</ClCompile> </ClCompile>
<ClCompile Include="..\libavfilter\dualinput.c"> <ClCompile Include="..\libavfilter\dualinput.c">
</ClCompile> </ClCompile>
...@@ -503,6 +505,8 @@ ...@@ -503,6 +505,8 @@
</ClCompile> </ClCompile>
<ClCompile Include="..\libavfilter\log2_tab.c"> <ClCompile Include="..\libavfilter\log2_tab.c">
</ClCompile> </ClCompile>
<ClCompile Include="..\libavfilter\x86\vf_blend_init.c">
</ClCompile>
<ClCompile Include="..\libavfilter\x86\vf_eq.c"> <ClCompile Include="..\libavfilter\x86\vf_eq.c">
<ObjectFileName>$(IntDir)\libavfilter_x86_vf_eq.obj</ObjectFileName> <ObjectFileName>$(IntDir)\libavfilter_x86_vf_eq.obj</ObjectFileName>
</ClCompile> </ClCompile>
......
...@@ -21,6 +21,9 @@ ...@@ -21,6 +21,9 @@
</Filter> </Filter>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<YASM Include="..\libavfilter\x86\vf_blend.asm">
<Filter>Source Files\libavfilter\x86</Filter>
</YASM>
<YASM Include="..\libavfilter\x86\vf_fspp.asm"> <YASM Include="..\libavfilter\x86\vf_fspp.asm">
<Filter>Source Files\libavfilter\x86</Filter> <Filter>Source Files\libavfilter\x86</Filter>
</YASM> </YASM>
...@@ -689,6 +692,9 @@ ...@@ -689,6 +692,9 @@
<ClCompile Include="..\libavfilter\log2_tab.c"> <ClCompile Include="..\libavfilter\log2_tab.c">
<Filter>Source Files\libavfilter</Filter> <Filter>Source Files\libavfilter</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="..\libavfilter\x86\vf_blend_init.c">
<Filter>Source Files\libavfilter\x86</Filter>
</ClCompile>
<ClCompile Include="..\libavfilter\x86\vf_eq.c"> <ClCompile Include="..\libavfilter\x86\vf_eq.c">
<Filter>Source Files\libavfilter\x86</Filter> <Filter>Source Files\libavfilter\x86</Filter>
</ClCompile> </ClCompile>
......
...@@ -495,6 +495,8 @@ ...@@ -495,6 +495,8 @@
</ClCompile> </ClCompile>
<ClCompile Include="..\libavformat\microdvdenc.c"> <ClCompile Include="..\libavformat\microdvdenc.c">
</ClCompile> </ClCompile>
<ClCompile Include="..\libavformat\mlpdec.c">
</ClCompile>
<ClCompile Include="..\libavformat\mlvdec.c"> <ClCompile Include="..\libavformat\mlvdec.c">
</ClCompile> </ClCompile>
<ClCompile Include="..\libavformat\mm.c"> <ClCompile Include="..\libavformat\mm.c">
...@@ -685,6 +687,8 @@ ...@@ -685,6 +687,8 @@
</ClCompile> </ClCompile>
<ClCompile Include="..\libavformat\segment.c"> <ClCompile Include="..\libavformat\segment.c">
</ClCompile> </ClCompile>
<ClCompile Include="..\libavformat\shortendec.c">
</ClCompile>
<ClCompile Include="..\libavformat\siff.c"> <ClCompile Include="..\libavformat\siff.c">
</ClCompile> </ClCompile>
<ClCompile Include="..\libavformat\smacker.c"> <ClCompile Include="..\libavformat\smacker.c">
......
...@@ -672,6 +672,9 @@ ...@@ -672,6 +672,9 @@
<ClCompile Include="..\libavformat\microdvdenc.c"> <ClCompile Include="..\libavformat\microdvdenc.c">
<Filter>Source Files\libavformat</Filter> <Filter>Source Files\libavformat</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="..\libavformat\mlpdec.c">
<Filter>Source Files\libavformat</Filter>
</ClCompile>
<ClCompile Include="..\libavformat\mlvdec.c"> <ClCompile Include="..\libavformat\mlvdec.c">
<Filter>Source Files\libavformat</Filter> <Filter>Source Files\libavformat</Filter>
</ClCompile> </ClCompile>
...@@ -957,6 +960,9 @@ ...@@ -957,6 +960,9 @@
<ClCompile Include="..\libavformat\segment.c"> <ClCompile Include="..\libavformat\segment.c">
<Filter>Source Files\libavformat</Filter> <Filter>Source Files\libavformat</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="..\libavformat\shortendec.c">
<Filter>Source Files\libavformat</Filter>
</ClCompile>
<ClCompile Include="..\libavformat\siff.c"> <ClCompile Include="..\libavformat\siff.c">
<Filter>Source Files\libavformat</Filter> <Filter>Source Files\libavformat</Filter>
</ClCompile> </ClCompile>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册