[PR #467] [MERGED] Added Remote Webcam #1148

Closed
opened 2026-02-27 15:53:17 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/quasar/Quasar/pull/467
Author: @MaxXor
Created: 6/18/2016
Status: Merged
Merged: 6/18/2016
Merged by: @MaxXor

Base: masterHead: pr/464


📝 Commits (7)

  • daac56a Added Remote Webcam
  • f890819 Fixed mistake
  • 02a6233 Fixed bug
  • 4ff3af0 Added Remote Webcam contextual image
  • 06f060f Removed unused files from AForge
  • 9926ff9 Added Remote Webcam as feature in readme.md
  • 3ed8a40 Some coding style adjustments and fixes

📊 Changes

61 files changed (+7447 additions, -100 deletions)

View changed files

📝 Client/Client.csproj (+39 -0)
Client/Core/AForge/Video.DirectShow/CameraControlProperty.cs (+67 -0)
Client/Core/AForge/Video.DirectShow/FilterInfo.cs (+193 -0)
Client/Core/AForge/Video.DirectShow/FilterInfoCollection.cs (+138 -0)
Client/Core/AForge/Video.DirectShow/Internals/IAMCameraControl.cs (+81 -0)
Client/Core/AForge/Video.DirectShow/Internals/IAMCrossbar.cs (+88 -0)
Client/Core/AForge/Video.DirectShow/Internals/IAMStreamConfig.cs (+74 -0)
Client/Core/AForge/Video.DirectShow/Internals/IAMVideoControl.cs (+112 -0)
Client/Core/AForge/Video.DirectShow/Internals/IBaseFilter.cs (+161 -0)
Client/Core/AForge/Video.DirectShow/Internals/ICaptureGraphBuilder2.cs (+192 -0)
Client/Core/AForge/Video.DirectShow/Internals/ICreateDevEnum.cs (+37 -0)
Client/Core/AForge/Video.DirectShow/Internals/IEnumFilters.cs (+71 -0)
Client/Core/AForge/Video.DirectShow/Internals/IEnumPins.cs (+68 -0)
Client/Core/AForge/Video.DirectShow/Internals/IFilterGraph.cs (+113 -0)
Client/Core/AForge/Video.DirectShow/Internals/IFilterGraph2.cs (+257 -0)
Client/Core/AForge/Video.DirectShow/Internals/IGraphBuilder.cs (+198 -0)
Client/Core/AForge/Video.DirectShow/Internals/IMediaControl.cs (+118 -0)
Client/Core/AForge/Video.DirectShow/Internals/IMediaEventEx.cs (+126 -0)
Client/Core/AForge/Video.DirectShow/Internals/IPin.cs (+191 -0)
Client/Core/AForge/Video.DirectShow/Internals/IPropertyBag.cs (+53 -0)

...and 41 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/quasar/Quasar/pull/467 **Author:** [@MaxXor](https://github.com/MaxXor) **Created:** 6/18/2016 **Status:** ✅ Merged **Merged:** 6/18/2016 **Merged by:** [@MaxXor](https://github.com/MaxXor) **Base:** `master` ← **Head:** `pr/464` --- ### 📝 Commits (7) - [`daac56a`](https://github.com/quasar/Quasar/commit/daac56a12c265ed77d4fe97a094676965ef86624) Added Remote Webcam - [`f890819`](https://github.com/quasar/Quasar/commit/f8908193a936769f9638eeb6c9b79a99927d3b41) Fixed mistake - [`02a6233`](https://github.com/quasar/Quasar/commit/02a62338633f063d8c9fc96700dbc12f7f396747) Fixed bug - [`4ff3af0`](https://github.com/quasar/Quasar/commit/4ff3af0a1143a8d411ffcb03a6094be2c11ba0d2) Added Remote Webcam contextual image - [`06f060f`](https://github.com/quasar/Quasar/commit/06f060f44c4f82bd13d79a8bad155b12a02d89fe) Removed unused files from AForge - [`9926ff9`](https://github.com/quasar/Quasar/commit/9926ff983e46494537bbc306f5481acfcd6b9500) Added Remote Webcam as feature in readme.md - [`3ed8a40`](https://github.com/quasar/Quasar/commit/3ed8a403b8f6357d0d624cee8f480e675445da0b) Some coding style adjustments and fixes ### 📊 Changes **61 files changed** (+7447 additions, -100 deletions) <details> <summary>View changed files</summary> 📝 `Client/Client.csproj` (+39 -0) ➕ `Client/Core/AForge/Video.DirectShow/CameraControlProperty.cs` (+67 -0) ➕ `Client/Core/AForge/Video.DirectShow/FilterInfo.cs` (+193 -0) ➕ `Client/Core/AForge/Video.DirectShow/FilterInfoCollection.cs` (+138 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IAMCameraControl.cs` (+81 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IAMCrossbar.cs` (+88 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IAMStreamConfig.cs` (+74 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IAMVideoControl.cs` (+112 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IBaseFilter.cs` (+161 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/ICaptureGraphBuilder2.cs` (+192 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/ICreateDevEnum.cs` (+37 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IEnumFilters.cs` (+71 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IEnumPins.cs` (+68 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IFilterGraph.cs` (+113 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IFilterGraph2.cs` (+257 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IGraphBuilder.cs` (+198 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IMediaControl.cs` (+118 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IMediaEventEx.cs` (+126 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IPin.cs` (+191 -0) ➕ `Client/Core/AForge/Video.DirectShow/Internals/IPropertyBag.cs` (+53 -0) _...and 41 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 15:53:17 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Quasar#1148
No description provided.