Skip to content

Commit

Permalink
project: Update for 3.4 merge.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sibras committed Jun 7, 2020
1 parent d403d2c commit 3ab9c78
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 23 deletions.
4 changes: 2 additions & 2 deletions SMP/libx265.def
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
EXPORTS
x265_encoder_open_188
x265_encoder_open_192
x265_param_default
x265_param_default_preset
x265_param_parse
Expand All @@ -20,7 +20,7 @@ x265_encoder_get_stats
x265_encoder_log
x265_encoder_close
x265_cleanup
x265_api_get_188
x265_api_get_192
x265_api_query
x265_encoder_intra_refresh
x265_encoder_ctu_info
Expand Down
34 changes: 18 additions & 16 deletions SMP/libx265.vcxproj

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions SMP/libx265.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,9 @@
<ClInclude Include="..\source\dynamicHDR10\json11\json11.h">
<Filter>Header Files\source\dynamicHDR10\json11</Filter>
</ClInclude>
<ClInclude Include="..\source\common\scaler.h">
<Filter>Header Files\source\common</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<None Include="libx265.def">
Expand Down Expand Up @@ -420,6 +423,9 @@
<ClCompile Include="..\source\common\lowpassdct.cpp">
<Filter>Source Files\common</Filter>
</ClCompile>
<ClCompile Include="..\source\common\scaler.cpp">
<Filter>Source Files\common</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<NASM Include="..\source\common\x86\h4-ipfilter16.asm">
Expand Down
8 changes: 4 additions & 4 deletions SMP/x265.rc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include <winresrc.h>

VS_VERSION_INFO VERSIONINFO
FILEVERSION 3,3,0,0
PRODUCTVERSION 3,3,0,0
FILEVERSION 3,4,0,0
PRODUCTVERSION 3,4,0,0
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
FILEOS VOS_NT_WINDOWS32
#ifdef OPENOBEX_EXPORTS
Expand All @@ -17,12 +17,12 @@ VS_VERSION_INFO VERSIONINFO
BLOCK "04090000"
BEGIN
VALUE "FileDescription", "HEVC video encoder"
VALUE "FileVersion", "3.3"
VALUE "FileVersion", "3.4"
VALUE "InternalName", "x265"
VALUE "LegalCopyright", "Multicoreware: GPLv2 or commercial"
VALUE "OriginalFilename", "libx265.dll"
VALUE "ProductName", "x265"
VALUE "ProductVersion", "3.3"
VALUE "ProductVersion", "3.4"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion SMP/x265_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
/* Incremented each time public API is changed, X265_BUILD is used as
* the shared library SONAME on platforms which support it. It also
* prevents linking against a different version of the static lib */
#define X265_BUILD 188
#define X265_BUILD 192

#endif
3 changes: 3 additions & 0 deletions SMP/x265cli.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
</ProjectConfiguration>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\source\abrEncApp.h" />
<ClInclude Include="..\source\compat\getopt\getopt.h" />
<ClInclude Include="..\source\input\input.h" />
<ClInclude Include="..\source\input\y4m.h" />
Expand All @@ -35,6 +36,7 @@
<ResourceCompile Include="x265.rc" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\source\abrEncApp.cpp" />
<ClCompile Include="..\source\compat\getopt\getopt.c" />
<ClCompile Include="..\source\input\input.cpp" />
<ClCompile Include="..\source\input\y4m.cpp">
Expand All @@ -53,6 +55,7 @@
<ClCompile Include="..\source\x265.cpp">
<PreprocessorDefinitions>_CRT_DECLARE_GLOBAL_VARIABLES_DIRECTLY;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="..\source\x265cli.cpp" />
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{23B73CAF-85E7-442F-AACA-D0ECDDA50E1A}</ProjectGuid>
Expand Down
9 changes: 9 additions & 0 deletions SMP/x265cli.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@
<ClInclude Include="..\source\output\reconplay.h">
<Filter>Header Files\output</Filter>
</ClInclude>
<ClInclude Include="..\source\abrEncApp.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="x265.rc">
Expand Down Expand Up @@ -100,5 +103,11 @@
<ClCompile Include="..\source\output\raw.cpp">
<Filter>Source Files\output</Filter>
</ClCompile>
<ClCompile Include="..\source\x265cli.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\source\abrEncApp.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
</Project>

0 comments on commit 3ab9c78

Please sign in to comment.