Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
Initial commit.
  • Loading branch information
hofmand authored Jan 4, 2022
1 parent 0152503 commit 1b6438f
Show file tree
Hide file tree
Showing 10 changed files with 403 additions and 0 deletions.
40 changes: 40 additions & 0 deletions HuffYUV/HuffYUV.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{930C7802-8A8C-48F9-8165-68863BCCD9DD}") = "HuffYUV_x86", "HuffYUV_x86.wixproj", "{1ADCBF8B-1180-4FD6-A202-BF7E6FDD7D8B}"
ProjectSection(ProjectDependencies) = postProject
{D7300283-A044-4FC1-A3CF-096DE4C426B2} = {D7300283-A044-4FC1-A3CF-096DE4C426B2}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Prebuild", "Prebuild.vcxproj", "{D7300283-A044-4FC1-A3CF-096DE4C426B2}"
EndProject
Project("{930C7802-8A8C-48F9-8165-68863BCCD9DD}") = "HuffYUV_x64", "HuffYUV_x64.wixproj", "{1022678B-28CE-4C85-A11F-DD6C41686707}"
ProjectSection(ProjectDependencies) = postProject
{D7300283-A044-4FC1-A3CF-096DE4C426B2} = {D7300283-A044-4FC1-A3CF-096DE4C426B2}
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x86 = Debug|x86
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{1ADCBF8B-1180-4FD6-A202-BF7E6FDD7D8B}.Debug|x86.ActiveCfg = Debug|x86
{1ADCBF8B-1180-4FD6-A202-BF7E6FDD7D8B}.Debug|x86.Build.0 = Debug|x86
{1ADCBF8B-1180-4FD6-A202-BF7E6FDD7D8B}.Release|x86.ActiveCfg = Release|x86
{1ADCBF8B-1180-4FD6-A202-BF7E6FDD7D8B}.Release|x86.Build.0 = Release|x86
{D7300283-A044-4FC1-A3CF-096DE4C426B2}.Debug|x86.ActiveCfg = Debug|Win32
{D7300283-A044-4FC1-A3CF-096DE4C426B2}.Debug|x86.Build.0 = Debug|Win32
{D7300283-A044-4FC1-A3CF-096DE4C426B2}.Release|x86.ActiveCfg = Release|Win32
{D7300283-A044-4FC1-A3CF-096DE4C426B2}.Release|x86.Build.0 = Release|Win32
{1022678B-28CE-4C85-A11F-DD6C41686707}.Debug|x86.ActiveCfg = Debug|x86
{1022678B-28CE-4C85-A11F-DD6C41686707}.Debug|x86.Build.0 = Debug|x86
{1022678B-28CE-4C85-A11F-DD6C41686707}.Release|x86.ActiveCfg = Release|x86
{1022678B-28CE-4C85-A11F-DD6C41686707}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
43 changes: 43 additions & 0 deletions HuffYUV/HuffYUV_x64.wixproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" InitialTargets="EnsureWixToolsetInstalled" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>3.10</ProductVersion>
<ProjectGuid>1022678b-28ce-4c85-a11f-dd6c41686707</ProjectGuid>
<SchemaVersion>2.0</SchemaVersion>
<OutputName>HuffYUV_x64_v2_1_1</OutputName>
<OutputType>Package</OutputType>
<Name>HuffYUV_x64</Name>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<OutputPath>bin\</OutputPath>
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
<DefineConstants>Debug</DefineConstants>
<SuppressAllWarnings>True</SuppressAllWarnings>
<Pedantic>False</Pedantic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<OutputPath>bin\$(Configuration)\</OutputPath>
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="Product_x64.wxs" />
</ItemGroup>
<ItemGroup>
<Content Include="Include_common.wxi" />
</ItemGroup>
<Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' " />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets" Condition=" '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets') " />
<Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' ">
<Error Text="The WiX Toolset v3.11 (or newer) build tools must be installed to build this project. To download the WiX Toolset, see http://wixtoolset.org/releases/" />
</Target>
<!--
To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Wix.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
41 changes: 41 additions & 0 deletions HuffYUV/HuffYUV_x86.wixproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" InitialTargets="EnsureWixToolsetInstalled" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>3.10</ProductVersion>
<ProjectGuid>1adcbf8b-1180-4fd6-a202-bf7e6fdd7d8b</ProjectGuid>
<SchemaVersion>2.0</SchemaVersion>
<OutputName>HuffYUV_x86_v2_1_1</OutputName>
<OutputType>Package</OutputType>
<Name>HuffYUV_x86</Name>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<OutputPath>bin\</OutputPath>
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
<DefineConstants>Debug</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<OutputPath>bin\$(Configuration)\</OutputPath>
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="Product_x86.wxs" />
</ItemGroup>
<ItemGroup>
<Content Include="Include_common.wxi" />
</ItemGroup>
<Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' " />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets" Condition=" '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets') " />
<Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' ">
<Error Text="The WiX Toolset v3.11 (or newer) build tools must be installed to build this project. To download the WiX Toolset, see http://wixtoolset.org/releases/" />
</Target>
<!--
To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Wix.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
4 changes: 4 additions & 0 deletions HuffYUV/Include_common.wxi
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<Include>
<?define Plugins_UnpackDir = "obj" ?>
</Include>
147 changes: 147 additions & 0 deletions HuffYUV/Prebuild.vcxproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,147 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="14.0" 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>
<PropertyGroup Label="Globals">
<ProjectGuid>{D7300283-A044-4FC1-A3CF-096DE4C426B2}</ProjectGuid>
<RootNamespace>Prebuild</RootNamespace>
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>MultiByte</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 />
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
<SDLCheck>true</SDLCheck>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
<SDLCheck>true</SDLCheck>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
</ClCompile>
<Link>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
</ClCompile>
<Link>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<CustomBuild Include="sources\HuffYUV.rar">
<FileType>Document</FileType>
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">"%ProgramW6432%\7-Zip"\7z x -o"obj\%(Filename)" -y "%(Identity)"</Command>
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Unpacking "%(Identity)"</Message>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">obj\%(Filename)\huffyuv.dll;obj\%(Filename)\huffyuv.inf</Outputs>
<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">"%ProgramW6432%\7-Zip"\7z x -o"obj\%(Filename)" -y "%(Identity)"</Command>
<Message Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Unpacking "%(Identity)"</Message>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">obj\%(Filename)\huffyuv.dll;obj\%(Filename)\huffyuv.inf</Outputs>
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">"%ProgramW6432%\7-Zip"\7z x -o"obj\%(Filename)" -y "%(Identity)"</Command>
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">"%ProgramW6432%\7-Zip"\7z x -o"obj\%(Filename)" -y "%(Identity)"</Command>
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Unpacking "%(Identity)"</Message>
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Unpacking "%(Identity)"</Message>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">obj\%(Filename)\huffyuv.dll;obj\%(Filename)\huffyuv.inf</Outputs>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">obj\%(Filename)\huffyuv.dll;obj\%(Filename)\huffyuv.inf</Outputs>
</CustomBuild>
<CustomBuild Include="sources\HuffYUV64.zip">
<FileType>Document</FileType>
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">"%ProgramW6432%\7-Zip"\7z x -o"obj\%(Filename)" -y "%(Identity)"</Command>
<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">"%ProgramW6432%\7-Zip"\7z x -o"obj\%(Filename)" -y "%(Identity)"</Command>
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Unpacking "%(Identity)"</Message>
<Message Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Unpacking "%(Identity)"</Message>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">obj\%(Filename)\huffyuv.dll;obj\%(Filename)\huffyuv.inf</Outputs>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">obj\%(Filename)\huffyuv.dll;obj\%(Filename)\huffyuv.inf</Outputs>
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Unpacking "%(Identity)"</Message>
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Unpacking "%(Identity)"</Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">"%ProgramW6432%\7-Zip"\7z x -o"obj\%(Filename)" -y "%(Identity)"</Command>
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">"%ProgramW6432%\7-Zip"\7z x -o"obj\%(Filename)" -y "%(Identity)"</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">obj\%(Filename)\huffyuv.dll;obj\%(Filename)\huffyuv.inf</Outputs>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">obj\%(Filename)\huffyuv.dll;obj\%(Filename)\huffyuv.inf</Outputs>
</CustomBuild>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
25 changes: 25 additions & 0 deletions HuffYUV/Prebuild.vcxproj.filters
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?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;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;hm;inl;inc;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>
<CustomBuild Include="sources\HuffYUV.rar">
<Filter>Source Files</Filter>
</CustomBuild>
<CustomBuild Include="sources\HuffYUV64.zip">
<Filter>Source Files</Filter>
</CustomBuild>
</ItemGroup>
</Project>
49 changes: 49 additions & 0 deletions HuffYUV/Product_x64.wxs
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<?include Include_common.wxi ?>

<?define HuffYUV_Platform = "x64" ?>
<?define HuffYUV_SourceDir = "$(var.Plugins_UnpackDir)\HuffYUV64" ?>
<?define HuffYUV_DllInputName = "huffyuv.dll" ?>
<?define HuffYUV_DllOutputName = "huffyuv.dll" ?>
<?define HuffYUV_CodecID = "HFYU" ?>
<?define HuffYUV_RegName = "Huffyuv lossless codec [$(var.HuffYUV_CodecID)]" ?>

<Product Id="12F33F25-1B9D-45F9-ACBC-B998B0C8DCCA" Name="HuffYUV 2.1.1 Lossless Video Codec (64-bit)" Language="1033" Version="2.1.1" Manufacturer="Ben Rudiak-Gould" UpgradeCode="298B10B4-A3D4-48EF-A91A-40C91A91756C">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" Platform="x64" InstallPrivileges="elevated" />

<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
<MediaTemplate EmbedCab="yes" />

<Feature Id="ProductFeature" Title="HuffYUV_$(var.HuffYUV_Platform)" Level="1">
<ComponentGroupRef Id="ProductComponents" />
</Feature>

<Property Id="ARPNOMODIFY" Value="1" />
</Product>

<Fragment>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="System64Folder" Name="System64Folder" />
</Directory>
</Fragment>

<Fragment>
<ComponentGroup Id="ProductComponents">
<Component Id="huffyuv_dll" Directory="System64Folder" Guid="354C1B93-5717-4722-89B7-C47A2CF01198" Permanent="yes" Win64="yes">
<File Id="huffyuv_dll" KeyPath="yes" Name="$(var.HuffYUV_DllOutputName)" Source="$(var.HuffYUV_SourceDir)\$(var.HuffYUV_DllInputName)" />
<RegistryKey Root="HKLM" Key="SYSTEM\CurrentControlSet\Control\MediaResources\icm\VIDC.$(var.HuffYUV_CodecID)">
<RegistryValue Name="Description" Type="string" Value="$(var.HuffYUV_RegName)" />
<RegistryValue Name="Driver" Type="string" Value="$(var.HuffYUV_DllOutputName)" />
<RegistryValue Name="FriendlyName" Type="string" Value="$(var.HuffYUV_RegName)" />
</RegistryKey>
<RegistryKey Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\drivers.desc">
<RegistryValue Name="$(var.HuffYUV_DllOutputName)" Type="string" Value="$(var.HuffYUV_RegName)" />
</RegistryKey>
<RegistryKey Root="HKLM" Key="Software\Microsoft\Windows NT\CurrentVersion\Drivers32">
<RegistryValue Name="VIDC.$(var.HuffYUV_CodecID)" Type="string" Value="$(var.HuffYUV_DllOutputName)" />
</RegistryKey>
</Component>
</ComponentGroup>
</Fragment>
</Wix>
Loading

0 comments on commit 1b6438f

Please sign in to comment.