mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-02 22:34:57 +00:00
34 lines
881 B
C#
34 lines
881 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
using PepperDash.Essentials.Core;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.VideoCodec
|
|
{
|
|
/// <summary>
|
|
/// For rooms that have video codec
|
|
/// </summary>
|
|
public interface IHasVideoCodec:IHasInCallFeedback,IPrivacy
|
|
{
|
|
VideoCodecBase VideoCodec { get; }
|
|
|
|
///// <summary>
|
|
///// Make this more specific
|
|
///// </summary>
|
|
//List<PepperDash.Essentials.Devices.Common.Codec.CodecActiveCallItem> ActiveCalls { get; }
|
|
|
|
/// <summary>
|
|
/// States: 0 for on hook, 1 for video, 2 for audio, 3 for telekenesis
|
|
/// </summary>
|
|
IntFeedback CallTypeFeedback { get; }
|
|
|
|
/// <summary>
|
|
/// When something in the room is sharing with the far end or through other means
|
|
/// </summary>
|
|
BoolFeedback IsSharingFeedback { get; }
|
|
|
|
}
|
|
} |