-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates project file to net8.0, replacing video device enumeration co…
…de from SharpDX.MediaFoundation and DirectShowLib with Microsoft.Windows.CsWin32 The former package is no longer compatible with .net8 (needs awkward hacks in build system as well as current vvvv runtime code), the latter causes build warnings.
- Loading branch information
Showing
8 changed files
with
177 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
|
||
# .v4p backup files | ||
*~.xml | ||
|
||
# Dynamic plugins .dll | ||
bin/ | ||
obj/ | ||
.vs/ | ||
packages/ | ||
lib/net461/ | ||
appveyor/nuget.exe | ||
/lib/net472/ | ||
|
||
# .v4p backup files | ||
*~.xml | ||
|
||
# Dynamic plugins .dll | ||
bin/ | ||
obj/ | ||
.vs/ | ||
packages/ | ||
lib/net461/ | ||
appveyor/nuget.exe | ||
/lib/net472/ | ||
/lib/net8.0-windows/ | ||
|
||
/.vl/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"$schema": "https://aka.ms/CsWin32.schema.json", | ||
"allowMarshaling": false, | ||
"comInterop": { "preserveSigMethods": [ "IAMCameraControl", "IAMVideoProcAmp", "IMFMediaEngine", "ICreateDevEnum" ] }, | ||
"public": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
CoCreateInstance | ||
IMFActivate | ||
IMFMediaSource | ||
MFCreateAttributes | ||
MFEnumDeviceSources | ||
MFMediaType_Video | ||
MF_MT_SUBTYPE | ||
MF_MT_FRAME_RATE | ||
MF_MT_FRAME_SIZE | ||
MF_DEVSOURCE_ATTRIBUTE_FRIENDLY_NAME | ||
MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE | ||
MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_VIDCAP_GUID | ||
|
||
ICreateDevEnum | ||
IPropertyBag | ||
CLSID_SystemDeviceEnum | ||
CLSID_VideoInputDeviceCategory | ||
VariantInit | ||
VariantClear | ||
S_OK |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.