Skip to content

Commit

Permalink
As downloaded from the internet
Browse files Browse the repository at this point in the history
  • Loading branch information
HowardsPlayPen committed Apr 30, 2021
1 parent 4cc6ac5 commit 3575836
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 7 deletions.
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
# Precompiled Headers
*.gch
*.pch
*.ipch

# Compiled Dynamic libraries
*.so
Expand All @@ -30,3 +31,15 @@
*.exe
*.out
*.app

Debug
Release

*.opendb
*.db
*.db-wal
*.db-shm

*.vs

*temp*
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
# WebCamMicrosoftFoundation
Written by Alejandro (https://elcharolin.wordpress.com/2017/08/28/webcam-capture-with-the-media-foundation-sdk/ )
This code was downloaded from https://elcharolin.wordpress.com/2017/08/28/webcam-capture-with-the-media-foundation-sdk/

and was a good introduction to accessing Webcams using Microsoft Foundation api calls but it contained a number of nasty issues that caught me out.

So I thought I would update and annotate the code to show what I found.

This first commit is the base code as was downloaded - ie. prior to any updates and annotations.
10 changes: 5 additions & 5 deletions WebCamMicrosoftFoundation.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,32 +22,32 @@
<ProjectGuid>{D4DF3947-AAD6-4CE0-9A0F-0982B33D478E}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>WebCamMicrosoftFoundation</RootNamespace>
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
<WindowsTargetPlatformVersion>10.0</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>
<PlatformToolset>v142</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
Expand Down

0 comments on commit 3575836

Please sign in to comment.