Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
DJATOM committed Aug 23, 2021
0 parents commit cc52424
Show file tree
Hide file tree
Showing 16 changed files with 3,008 additions and 0 deletions.
31 changes: 31 additions & 0 deletions LibP2P.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31515.178
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibP2P", "LibP2P.vcxproj", "{D051C10D-15E9-4E57-B7B0-B05083B94040}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D051C10D-15E9-4E57-B7B0-B05083B94040}.Debug|x64.ActiveCfg = Debug|x64
{D051C10D-15E9-4E57-B7B0-B05083B94040}.Debug|x64.Build.0 = Debug|x64
{D051C10D-15E9-4E57-B7B0-B05083B94040}.Debug|x86.ActiveCfg = Debug|Win32
{D051C10D-15E9-4E57-B7B0-B05083B94040}.Debug|x86.Build.0 = Debug|Win32
{D051C10D-15E9-4E57-B7B0-B05083B94040}.Release|x64.ActiveCfg = Release|x64
{D051C10D-15E9-4E57-B7B0-B05083B94040}.Release|x64.Build.0 = Release|x64
{D051C10D-15E9-4E57-B7B0-B05083B94040}.Release|x86.ActiveCfg = Release|Win32
{D051C10D-15E9-4E57-B7B0-B05083B94040}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {F3F623BC-3396-44F6-B28A-D67EFB695743}
EndGlobalSection
EndGlobal
160 changes: 160 additions & 0 deletions LibP2P.vcxproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,160 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<ItemGroup>
<ClCompile Include="src\p2p_api.cpp" />
<ClCompile Include="src\libp2p_plugin.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\p2p.h" />
<ClInclude Include="src\p2p_api.h" />
</ItemGroup>
<PropertyGroup Label="Globals">
<VCProjectVersion>16.0</VCProjectVersion>
<Keyword>LibP2P</Keyword>
<ProjectGuid>{d051c10d-15e9-4e57-b7b0-b05083b94040}</ProjectGuid>
<RootNamespace>LibP2P</RootNamespace>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="Shared">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<IncludePath>C:\Program Files\VapourSynth\sdk\include\vapoursynth;$(IncludePath);.\</IncludePath>
<LinkIncremental>true</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<IncludePath>C:\Program Files\VapourSynth\sdk\include\vapoursynth;$(IncludePath);.\</IncludePath>
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<IncludePath>C:\Program Files\VapourSynth\sdk\include\vapoursynth;$(IncludePath);.\</IncludePath>
<LinkIncremental>true</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<IncludePath>C:\Program Files\VapourSynth\sdk\include\vapoursynth;$(IncludePath);.\</IncludePath>
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>WIN32;_DEBUG;LIBP2P_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableUAC>false</EnableUAC>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>WIN32;NDEBUG;LIBP2P_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>false</GenerateDebugInformation>
<EnableUAC>false</EnableUAC>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>_DEBUG;LIBP2P_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableUAC>false</EnableUAC>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>NDEBUG;LIBP2P_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>false</GenerateDebugInformation>
<EnableUAC>false</EnableUAC>
</Link>
</ItemDefinitionGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
33 changes: 33 additions & 0 deletions LibP2P.vcxproj.filters
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Filter Include="Source Files">
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
<Extensions>cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
</Filter>
<Filter Include="Header Files">
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
<Extensions>h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd</Extensions>
</Filter>
<Filter Include="Resource Files">
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="src\libp2p_plugin.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="src\p2p_api.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\p2p.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="src\p2p_api.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
</Project>
4 changes: 4 additions & 0 deletions LibP2P.vcxproj.user
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
</Project>
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# LibP2P-Vapoursynth

Vapoursynth plugin for packing/unpacking of RGB clips.
93 changes: 93 additions & 0 deletions src/headers/VSConstants4.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
/*
* Copyright (c) 2021 Fredrik Mellbin
*
* This file is part of VapourSynth.
*
* VapourSynth is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* VapourSynth is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with VapourSynth; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#ifndef VSCONSTANTS4_H
#define VSCONSTANTS4_H

typedef enum VSColorRange {
VSC_RANGE_FULL = 0,
VSC_RANGE_LIMITED = 1
} VSColorRange;

typedef enum VSChromaLocation {
VSC_CHROMA_LEFT = 0,
VSC_CHROMA_CENTER = 1,
VSC_CHROMA_TOP_LEFT = 2,
VSC_CHROMA_TOP = 3,
VSC_CHROMA_BOTTOM_LEFT = 4,
VSC_CHROMA_BOTTOM = 5
} VSChromaLocation;

typedef enum VSFieldBased {
VSC_FIELD_PROGRESSIVE = 0,
VSC_FIELD_TOP = 1,
VSC_FIELD_BOTTOM = 2
} VSFieldBased;

typedef enum VSMatrixCoefficients {
VSC_MATRIX_RGB = 0,
VSC_MATRIX_BT709 = 1,
VSC_MATRIX_UNSPECIFIED = 2,
VSC_MATRIX_FCC = 4,
VSC_MATRIX_BT470_BG = 5,
VSC_MATRIX_ST170_M = 6, /* Equivalent to 5. */
VSC_MATRIX_ST240_M = 7,
VSC_MATRIX_YCGCO = 8,
VSC_MATRIX_BT2020_NCL = 9,
VSC_MATRIX_BT2020_CL = 10,
VSC_MATRIX_CHROMATICITY_DERIVED_NCL = 12,
VSC_MATRIX_CHROMATICITY_DERIVED_CL = 13,
VSC_MATRIX_ICTCP = 14
} VSMatrixCoefficients;

typedef enum VSTransferCharacteristics {
VSC_TRANSFER_BT709 = 1,
VSC_TRANSFER_UNSPECIFIED = 2,
VSC_TRANSFER_BT470_M = 4,
VSC_TRANSFER_BT470_BG = 5,
VSC_TRANSFER_BT601 = 6, /* Equivalent to 1. */
VSC_TRANSFER_ST240_M = 7,
VSC_TRANSFER_LINEAR = 8,
VSC_TRANSFER_LOG_100 = 9,
VSC_TRANSFER_LOG_316 = 10,
VSC_TRANSFER_IEC_61966_2_4 = 11,
VSC_TRANSFER_IEC_61966_2_1 = 13,
VSC_TRANSFER_BT2020_10 = 14, /* Equivalent to 1. */
VSC_TRANSFER_BT2020_12 = 15, /* Equivalent to 1. */
VSC_TRANSFER_ST2084 = 16,
VSC_TRANSFER_ARIB_B67 = 18
} VSTransferCharacteristics;

typedef enum VSColorPrimaries {
VSC_PRIMARIES_BT709 = 1,
VSC_PRIMARIES_UNSPECIFIED = 2,
VSC_PRIMARIES_BT470_M = 4,
VSC_PRIMARIES_BT470_BG = 5,
VSC_PRIMARIES_ST170_M = 6,
VSC_PRIMARIES_ST240_M = 7, /* Equivalent to 6. */
VSC_PRIMARIES_FILM = 8,
VSC_PRIMARIES_BT2020 = 9,
VSC_PRIMARIES_ST428 = 10,
VSC_PRIMARIES_ST431_2 = 11,
VSC_PRIMARIES_ST432_1 = 12,
VSC_PRIMARIES_EBU3213_E = 22
} VSColorPrimaries;

#endif /* VSCONSTANTS4_H */
Loading

0 comments on commit cc52424

Please sign in to comment.