mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-12 19:24:53 +00:00
Significantly restructure camera control interfaces and event arguments. Removed obsolete interfaces like `IHasCameras` and `CameraSelectedEventArgs`, and introduced generic event argument classes for improved type safety. Added `IHasCamerasWithControls` for better management of camera controls. Corrected the `IHasCameraMuteWithUnmuteReqeust` interface name. Reintroduced the `eCameraControlMode` enum to define camera control modes. These changes enhance the organization, clarity, and functionality of the camera control system.
17 lines
492 B
C#
17 lines
492 B
C#
using System;
|
|
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Cameras
|
|
{
|
|
/// <summary>
|
|
/// Interface for devices that can mute and unmute their camera video, with an event for unmute requests
|
|
/// </summary>
|
|
public interface IHasCameraMuteWithUnmuteReqeust : IHasCameraMute
|
|
{
|
|
/// <summary>
|
|
/// Event that is raised when a video unmute is requested, typically by the far end
|
|
/// </summary>
|
|
event EventHandler VideoUnmuteRequested;
|
|
}
|
|
}
|