Skip to content

Commit

Permalink
VVdeC: устранено падение на некоторых конфигурациях и видео. Компилир…
Browse files Browse the repository at this point in the history
…уем все варианты SIMD функций.
  • Loading branch information
v0lt committed May 11, 2024
1 parent 27aaf87 commit b6dae80
Show file tree
Hide file tree
Showing 2 changed files with 132 additions and 0 deletions.
66 changes: 66 additions & 0 deletions src/ExtLib/vvdec.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,39 @@
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx2\Trafo_avx2.cpp">
<PreprocessorDefinitions>USE_AVX2;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx\AdaptiveLoopFilter_avx.cpp">
<PreprocessorDefinitions>USE_AVX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx\Buffer_avx.cpp">
<PreprocessorDefinitions>USE_AVX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx\InterpolationFilter_avx.cpp">
<PreprocessorDefinitions>USE_AVX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx\InterPred_avx.cpp">
<PreprocessorDefinitions>USE_AVX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx\IntraPred_avx.cpp">
<PreprocessorDefinitions>USE_AVX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx\LoopFilter_avx.cpp">
<PreprocessorDefinitions>USE_AVX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx\Picture_avx.cpp">
<PreprocessorDefinitions>USE_AVX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx\Quant_avx.cpp">
<PreprocessorDefinitions>USE_AVX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx\RdCost_avx.cpp">
<PreprocessorDefinitions>USE_AVX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx\SampleAdaptiveOffset_avx.cpp">
<PreprocessorDefinitions>USE_AVX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx\Trafo_avx.cpp">
<PreprocessorDefinitions>USE_AVX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\CommonDefX86.cpp" />
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\InitX86.cpp" />
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse41\AdaptiveLoopFilter_sse41.cpp">
Expand Down Expand Up @@ -121,6 +154,39 @@
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse41\Trafo_sse41.cpp">
<PreprocessorDefinitions>USE_SSE41;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse42\AdaptiveLoopFilter_sse42.cpp">
<PreprocessorDefinitions>USE_SSE42;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse42\Buffer_sse42.cpp">
<PreprocessorDefinitions>USE_SSE42;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse42\InterpolationFilter_sse42.cpp">
<PreprocessorDefinitions>USE_SSE42;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse42\InterPred_sse42.cpp">
<PreprocessorDefinitions>USE_SSE42;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse42\IntraPred_sse42.cpp">
<PreprocessorDefinitions>USE_SSE42;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse42\LoopFilter_sse42.cpp">
<PreprocessorDefinitions>USE_SSE42;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse42\Picture_sse42.cpp">
<PreprocessorDefinitions>USE_SSE42;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse42\Quant_sse42.cpp">
<PreprocessorDefinitions>USE_SSE42;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse42\RdCost_sse42.cpp">
<PreprocessorDefinitions>USE_SSE42;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse42\SampleAdaptiveOffset_sse42.cpp">
<PreprocessorDefinitions>USE_SSE42;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse42\Trafo_sse42.cpp">
<PreprocessorDefinitions>USE_SSE42;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\DecoderLib\AnnexBread.cpp" />
<ClCompile Include="vvdec\vvdec\source\Lib\DecoderLib\BinDecoder.cpp" />
<ClCompile Include="vvdec\vvdec\source\Lib\DecoderLib\CABACReader.cpp" />
Expand Down
66 changes: 66 additions & 0 deletions src/ExtLib/vvdec.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,72 @@
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\InitX86.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse42\AdaptiveLoopFilter_sse42.cpp">
<Filter>Source Files\simd</Filter>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse42\Buffer_sse42.cpp">
<Filter>Source Files\simd</Filter>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse42\InterpolationFilter_sse42.cpp">
<Filter>Source Files\simd</Filter>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse42\InterPred_sse42.cpp">
<Filter>Source Files\simd</Filter>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse42\IntraPred_sse42.cpp">
<Filter>Source Files\simd</Filter>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse42\LoopFilter_sse42.cpp">
<Filter>Source Files\simd</Filter>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse42\Picture_sse42.cpp">
<Filter>Source Files\simd</Filter>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse42\Quant_sse42.cpp">
<Filter>Source Files\simd</Filter>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse42\RdCost_sse42.cpp">
<Filter>Source Files\simd</Filter>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse42\SampleAdaptiveOffset_sse42.cpp">
<Filter>Source Files\simd</Filter>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\sse42\Trafo_sse42.cpp">
<Filter>Source Files\simd</Filter>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx\AdaptiveLoopFilter_avx.cpp">
<Filter>Source Files\simd</Filter>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx\Buffer_avx.cpp">
<Filter>Source Files\simd</Filter>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx\InterpolationFilter_avx.cpp">
<Filter>Source Files\simd</Filter>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx\InterPred_avx.cpp">
<Filter>Source Files\simd</Filter>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx\IntraPred_avx.cpp">
<Filter>Source Files\simd</Filter>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx\LoopFilter_avx.cpp">
<Filter>Source Files\simd</Filter>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx\Picture_avx.cpp">
<Filter>Source Files\simd</Filter>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx\Quant_avx.cpp">
<Filter>Source Files\simd</Filter>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx\RdCost_avx.cpp">
<Filter>Source Files\simd</Filter>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx\SampleAdaptiveOffset_avx.cpp">
<Filter>Source Files\simd</Filter>
</ClCompile>
<ClCompile Include="vvdec\vvdec\source\Lib\CommonLib\x86\avx\Trafo_avx.cpp">
<Filter>Source Files\simd</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="vvdec\vvdec\source\Lib\CommonLib\AdaptiveLoopFilter.h">
Expand Down

0 comments on commit b6dae80

Please sign in to comment.