Skip to content

Commit 0c96cf3

Browse files
committed
fixing the MPEG2 encoding issue
1 parent e29ac98 commit 0c96cf3

File tree

6 files changed

+330
-3
lines changed

6 files changed

+330
-3
lines changed

source/ffmpeg-cpp/encode_video/encode_video.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ int main()
1212
try
1313
{
1414
// Create a muxer that will output the video as MKV.
15-
Muxer* muxer = new Muxer("output.mkv");
15+
Muxer* muxer = new Muxer("output.mpg");
1616

1717
// Create a MP3 codec that will encode the raw data.
18-
VideoCodec* codec = new VideoCodec(AV_CODEC_ID_MPEG2VIDEO);
19-
codec->SetOption("preset", "default");
18+
VideoCodec* codec = new VideoCodec("mpeg2video");
19+
//codec->SetOption("preset", "default");
2020
//VideoCodec* codec = new H264NVEncCodec();
2121

2222
// Create an encoder that will encode the raw audio data as MP3.

source/ffmpeg-cpp/ffmpeg-cpp.sln

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "encode_video", "encode_vide
1919
EndProject
2020
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "remuxing", "remuxing\remuxing.vcxproj", "{B337D322-355B-4348-A2A8-270471BE2C95}"
2121
EndProject
22+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "filtering_video", "filtering_video\filtering_video.vcxproj", "{80579A29-8073-46A0-B328-661155E0887B}"
23+
EndProject
2224
Global
2325
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2426
Debug|x64 = Debug|x64
@@ -233,6 +235,34 @@ Global
233235
{B337D322-355B-4348-A2A8-270471BE2C95}.ReleaseLTO|x64.Build.0 = Release|x64
234236
{B337D322-355B-4348-A2A8-270471BE2C95}.ReleaseLTO|x86.ActiveCfg = Release|Win32
235237
{B337D322-355B-4348-A2A8-270471BE2C95}.ReleaseLTO|x86.Build.0 = Release|Win32
238+
{80579A29-8073-46A0-B328-661155E0887B}.Debug|x64.ActiveCfg = Debug|x64
239+
{80579A29-8073-46A0-B328-661155E0887B}.Debug|x64.Build.0 = Debug|x64
240+
{80579A29-8073-46A0-B328-661155E0887B}.Debug|x86.ActiveCfg = Debug|Win32
241+
{80579A29-8073-46A0-B328-661155E0887B}.Debug|x86.Build.0 = Debug|Win32
242+
{80579A29-8073-46A0-B328-661155E0887B}.DebugDLL|x64.ActiveCfg = Debug|x64
243+
{80579A29-8073-46A0-B328-661155E0887B}.DebugDLL|x64.Build.0 = Debug|x64
244+
{80579A29-8073-46A0-B328-661155E0887B}.DebugDLL|x86.ActiveCfg = Debug|Win32
245+
{80579A29-8073-46A0-B328-661155E0887B}.DebugDLL|x86.Build.0 = Debug|Win32
246+
{80579A29-8073-46A0-B328-661155E0887B}.DebugDLLStaticDeps|x64.ActiveCfg = Debug|x64
247+
{80579A29-8073-46A0-B328-661155E0887B}.DebugDLLStaticDeps|x64.Build.0 = Debug|x64
248+
{80579A29-8073-46A0-B328-661155E0887B}.DebugDLLStaticDeps|x86.ActiveCfg = Debug|Win32
249+
{80579A29-8073-46A0-B328-661155E0887B}.DebugDLLStaticDeps|x86.Build.0 = Debug|Win32
250+
{80579A29-8073-46A0-B328-661155E0887B}.Release|x64.ActiveCfg = Release|x64
251+
{80579A29-8073-46A0-B328-661155E0887B}.Release|x64.Build.0 = Release|x64
252+
{80579A29-8073-46A0-B328-661155E0887B}.Release|x86.ActiveCfg = Release|Win32
253+
{80579A29-8073-46A0-B328-661155E0887B}.Release|x86.Build.0 = Release|Win32
254+
{80579A29-8073-46A0-B328-661155E0887B}.ReleaseDLL|x64.ActiveCfg = Release|x64
255+
{80579A29-8073-46A0-B328-661155E0887B}.ReleaseDLL|x64.Build.0 = Release|x64
256+
{80579A29-8073-46A0-B328-661155E0887B}.ReleaseDLL|x86.ActiveCfg = Release|Win32
257+
{80579A29-8073-46A0-B328-661155E0887B}.ReleaseDLL|x86.Build.0 = Release|Win32
258+
{80579A29-8073-46A0-B328-661155E0887B}.ReleaseDLLStaticDeps|x64.ActiveCfg = Release|x64
259+
{80579A29-8073-46A0-B328-661155E0887B}.ReleaseDLLStaticDeps|x64.Build.0 = Release|x64
260+
{80579A29-8073-46A0-B328-661155E0887B}.ReleaseDLLStaticDeps|x86.ActiveCfg = Release|Win32
261+
{80579A29-8073-46A0-B328-661155E0887B}.ReleaseDLLStaticDeps|x86.Build.0 = Release|Win32
262+
{80579A29-8073-46A0-B328-661155E0887B}.ReleaseLTO|x64.ActiveCfg = Release|x64
263+
{80579A29-8073-46A0-B328-661155E0887B}.ReleaseLTO|x64.Build.0 = Release|x64
264+
{80579A29-8073-46A0-B328-661155E0887B}.ReleaseLTO|x86.ActiveCfg = Release|Win32
265+
{80579A29-8073-46A0-B328-661155E0887B}.ReleaseLTO|x86.Build.0 = Release|Win32
236266
EndGlobalSection
237267
GlobalSection(SolutionProperties) = preSolution
238268
HideSolutionNode = FALSE
@@ -243,6 +273,7 @@ Global
243273
{9D936BE4-46AA-489F-82E7-D2CFEB157FB6} = {3B1FE419-D7D2-4406-9C24-5A6F6ED63E73}
244274
{597D5EF8-04DB-48F9-A8F3-4B593B81C7C3} = {3B1FE419-D7D2-4406-9C24-5A6F6ED63E73}
245275
{B337D322-355B-4348-A2A8-270471BE2C95} = {3B1FE419-D7D2-4406-9C24-5A6F6ED63E73}
276+
{80579A29-8073-46A0-B328-661155E0887B} = {3B1FE419-D7D2-4406-9C24-5A6F6ED63E73}
246277
EndGlobalSection
247278
GlobalSection(ExtensibilityGlobals) = postSolution
248279
SolutionGuid = {1838F09B-B929-4D1E-ABB6-FA2A94F4A4BE}
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
2+
#include <iostream>
3+
4+
#include "ffmpegcpp.h"
5+
6+
using namespace std;
7+
using namespace ffmpegcpp;
8+
9+
int main()
10+
{
11+
// This example will apply some filters to a video and write it back.
12+
try
13+
{
14+
// Create a muxer that will output the video as MKV.
15+
Muxer* muxer = new Muxer("filtered_video.mp4");
16+
17+
// Create a MP3 codec that will encode the raw data.
18+
VideoCodec* codec = new VideoCodec(AV_CODEC_ID_MPEG2VIDEO);
19+
codec->SetOption("preset", "default");
20+
//VideoCodec* codec = new H264NVEncCodec();
21+
22+
// Create an encoder that will encode the raw audio data as MP3.
23+
// Tie it to the muxer so it will be written to the file.
24+
VideoEncoder* encoder = new VideoEncoder(codec, muxer);
25+
26+
// Load the raw video file so we can process it.
27+
// FFmpeg is very good at deducing the file format, even from raw video files,
28+
// but if we have something weird, we can specify the properties of the format
29+
// in the constructor as commented out below.
30+
RawVideoFileSource* videoFile = new RawVideoFileSource("samples/carphone_qcif.y4m", encoder);
31+
32+
// Prepare the output pipeline. This will push a small amount of frames to the file sink until it IsPrimed returns true.
33+
videoFile->PreparePipeline();
34+
35+
// Push all the remaining frames through.
36+
while (!videoFile->IsDone())
37+
{
38+
videoFile->Step();
39+
}
40+
41+
// Save everything to disk by closing the muxer.
42+
muxer->Close();
43+
}
44+
catch (const char* bla)
45+
{
46+
47+
}
48+
/*catch (FFmpegException e)
49+
{
50+
cerr << "Exception caught!" << endl;
51+
cerr << e.what() << endl;
52+
throw e;
53+
}*/
54+
55+
cout << "Encoding complete!" << endl;
56+
cout << "Press any key to continue..." << endl;
57+
58+
getchar();
59+
}
Lines changed: 200 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,200 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup Label="ProjectConfigurations">
4+
<ProjectConfiguration Include="Debug|Win32">
5+
<Configuration>Debug</Configuration>
6+
<Platform>Win32</Platform>
7+
</ProjectConfiguration>
8+
<ProjectConfiguration Include="Release|Win32">
9+
<Configuration>Release</Configuration>
10+
<Platform>Win32</Platform>
11+
</ProjectConfiguration>
12+
<ProjectConfiguration Include="Debug|x64">
13+
<Configuration>Debug</Configuration>
14+
<Platform>x64</Platform>
15+
</ProjectConfiguration>
16+
<ProjectConfiguration Include="Release|x64">
17+
<Configuration>Release</Configuration>
18+
<Platform>x64</Platform>
19+
</ProjectConfiguration>
20+
</ItemGroup>
21+
<PropertyGroup Label="Globals">
22+
<VCProjectVersion>15.0</VCProjectVersion>
23+
<ProjectGuid>{80579A29-8073-46A0-B328-661155E0887B}</ProjectGuid>
24+
<Keyword>Win32Proj</Keyword>
25+
<RootNamespace>decodeaudio</RootNamespace>
26+
<WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
27+
</PropertyGroup>
28+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
29+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
30+
<ConfigurationType>Application</ConfigurationType>
31+
<UseDebugLibraries>true</UseDebugLibraries>
32+
<PlatformToolset>v141</PlatformToolset>
33+
<CharacterSet>Unicode</CharacterSet>
34+
</PropertyGroup>
35+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
36+
<ConfigurationType>Application</ConfigurationType>
37+
<UseDebugLibraries>false</UseDebugLibraries>
38+
<PlatformToolset>v141</PlatformToolset>
39+
<WholeProgramOptimization>true</WholeProgramOptimization>
40+
<CharacterSet>Unicode</CharacterSet>
41+
</PropertyGroup>
42+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
43+
<ConfigurationType>Application</ConfigurationType>
44+
<UseDebugLibraries>true</UseDebugLibraries>
45+
<PlatformToolset>v141</PlatformToolset>
46+
<CharacterSet>Unicode</CharacterSet>
47+
</PropertyGroup>
48+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
49+
<ConfigurationType>Application</ConfigurationType>
50+
<UseDebugLibraries>false</UseDebugLibraries>
51+
<PlatformToolset>v141</PlatformToolset>
52+
<WholeProgramOptimization>true</WholeProgramOptimization>
53+
<CharacterSet>Unicode</CharacterSet>
54+
</PropertyGroup>
55+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
56+
<ImportGroup Label="ExtensionSettings">
57+
</ImportGroup>
58+
<ImportGroup Label="Shared">
59+
</ImportGroup>
60+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
61+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
62+
<Import Project="..\FFmpegLibraryLocationProperty.props" />
63+
</ImportGroup>
64+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
65+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
66+
<Import Project="..\FFmpegLibraryLocationProperty.props" />
67+
</ImportGroup>
68+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
69+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
70+
<Import Project="..\FFmpegLibraryLocationProperty.props" />
71+
</ImportGroup>
72+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
73+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
74+
<Import Project="..\FFmpegLibraryLocationProperty.props" />
75+
</ImportGroup>
76+
<PropertyGroup Label="UserMacros" />
77+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
78+
<LinkIncremental>true</LinkIncremental>
79+
<OutDir>$(ProjectDir)..\..\..\bin\$(Platform)\$(Configuration)\</OutDir>
80+
<IntDir>obj\$(Platform)\$(Configuration)\</IntDir>
81+
</PropertyGroup>
82+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
83+
<LinkIncremental>true</LinkIncremental>
84+
<OutDir>$(ProjectDir)..\..\..\bin\$(Platform)\$(Configuration)\</OutDir>
85+
<IntDir>obj\$(Platform)\$(Configuration)\</IntDir>
86+
</PropertyGroup>
87+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
88+
<LinkIncremental>false</LinkIncremental>
89+
<OutDir>$(ProjectDir)..\..\..\bin\$(Platform)\$(Configuration)\</OutDir>
90+
<IntDir>obj\$(Platform)\$(Configuration)\</IntDir>
91+
</PropertyGroup>
92+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
93+
<LinkIncremental>false</LinkIncremental>
94+
<OutDir>$(ProjectDir)..\..\..\bin\$(Platform)\$(Configuration)\</OutDir>
95+
<IntDir>obj\$(Platform)\$(Configuration)\</IntDir>
96+
</PropertyGroup>
97+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
98+
<ClCompile>
99+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
100+
<WarningLevel>Level3</WarningLevel>
101+
<Optimization>Disabled</Optimization>
102+
<SDLCheck>false</SDLCheck>
103+
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
104+
<ConformanceMode>true</ConformanceMode>
105+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
106+
<AdditionalIncludeDirectories>$(FFmpegLibraryDir)include;..\ffmpeg-cpp;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
107+
</ClCompile>
108+
<Link>
109+
<SubSystem>Console</SubSystem>
110+
<GenerateDebugInformation>true</GenerateDebugInformation>
111+
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
112+
</Link>
113+
<PostBuildEvent>
114+
<Command>xcopy $(SamplesDir) $(OutDir)samples /s /y /i
115+
xcopy $(FFmpegLibraryDir)bin $(OutDir) /s /y /i</Command>
116+
</PostBuildEvent>
117+
</ItemDefinitionGroup>
118+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
119+
<ClCompile>
120+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
121+
<WarningLevel>Level3</WarningLevel>
122+
<Optimization>Disabled</Optimization>
123+
<SDLCheck>true</SDLCheck>
124+
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
125+
<ConformanceMode>true</ConformanceMode>
126+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
127+
<AdditionalIncludeDirectories>$(FFmpegLibraryDir)include;..\ffmpeg-cpp;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
128+
</ClCompile>
129+
<Link>
130+
<SubSystem>Console</SubSystem>
131+
<GenerateDebugInformation>true</GenerateDebugInformation>
132+
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
133+
</Link>
134+
<PostBuildEvent>
135+
<Command>xcopy $(SamplesDir) $(OutDir)samples /s /y /i
136+
xcopy $(FFmpegLibraryDir)bin $(OutDir) /s /y /i</Command>
137+
</PostBuildEvent>
138+
</ItemDefinitionGroup>
139+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
140+
<ClCompile>
141+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
142+
<WarningLevel>Level3</WarningLevel>
143+
<Optimization>MaxSpeed</Optimization>
144+
<FunctionLevelLinking>true</FunctionLevelLinking>
145+
<IntrinsicFunctions>true</IntrinsicFunctions>
146+
<SDLCheck>true</SDLCheck>
147+
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
148+
<ConformanceMode>true</ConformanceMode>
149+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
150+
<AdditionalIncludeDirectories>$(FFmpegLibraryDir)include;..\ffmpeg-cpp;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
151+
</ClCompile>
152+
<Link>
153+
<SubSystem>Console</SubSystem>
154+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
155+
<OptimizeReferences>true</OptimizeReferences>
156+
<GenerateDebugInformation>true</GenerateDebugInformation>
157+
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
158+
</Link>
159+
<PostBuildEvent>
160+
<Command>xcopy $(SamplesDir) $(OutDir)samples /s /y /i
161+
xcopy $(FFmpegLibraryDir)bin $(OutDir) /s /y /i</Command>
162+
</PostBuildEvent>
163+
</ItemDefinitionGroup>
164+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
165+
<ClCompile>
166+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
167+
<WarningLevel>Level3</WarningLevel>
168+
<Optimization>MaxSpeed</Optimization>
169+
<FunctionLevelLinking>true</FunctionLevelLinking>
170+
<IntrinsicFunctions>true</IntrinsicFunctions>
171+
<SDLCheck>true</SDLCheck>
172+
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
173+
<ConformanceMode>true</ConformanceMode>
174+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
175+
<AdditionalIncludeDirectories>$(FFmpegLibraryDir)include;..\ffmpeg-cpp;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
176+
</ClCompile>
177+
<Link>
178+
<SubSystem>Console</SubSystem>
179+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
180+
<OptimizeReferences>true</OptimizeReferences>
181+
<GenerateDebugInformation>true</GenerateDebugInformation>
182+
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
183+
</Link>
184+
<PostBuildEvent>
185+
<Command>xcopy $(SamplesDir) $(OutDir)samples /s /y /i
186+
xcopy $(FFmpegLibraryDir)bin $(OutDir) /s /y /i</Command>
187+
</PostBuildEvent>
188+
</ItemDefinitionGroup>
189+
<ItemGroup>
190+
<ProjectReference Include="..\ffmpeg-cpp\ffmpeg-cpp.vcxproj">
191+
<Project>{babfd64d-9bf1-4328-b977-24bf81800620}</Project>
192+
</ProjectReference>
193+
</ItemGroup>
194+
<ItemGroup>
195+
<ClCompile Include="filtering_video.cpp" />
196+
</ItemGroup>
197+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
198+
<ImportGroup Label="ExtensionTargets">
199+
</ImportGroup>
200+
</Project>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup>
4+
<Filter Include="Source Files">
5+
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
6+
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
7+
</Filter>
8+
<Filter Include="Resource Files">
9+
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
10+
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
11+
</Filter>
12+
</ItemGroup>
13+
<ItemGroup>
14+
<ClCompile Include="filtering_video.cpp">
15+
<Filter>Source Files</Filter>
16+
</ClCompile>
17+
</ItemGroup>
18+
</Project>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
4+
<LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory>
5+
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
6+
</PropertyGroup>
7+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
8+
<LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory>
9+
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
10+
</PropertyGroup>
11+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
12+
<LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory>
13+
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
14+
</PropertyGroup>
15+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
16+
<LocalDebuggerWorkingDirectory>$(OutDir)</LocalDebuggerWorkingDirectory>
17+
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
18+
</PropertyGroup>
19+
</Project>

0 commit comments

Comments
 (0)