mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-16 21:24:54 +00:00
Updates to Video Codec Interfaces
This commit is contained in:
@@ -18,8 +18,28 @@ namespace PepperDash.Essentials.Core
|
|||||||
void AcceptCall();
|
void AcceptCall();
|
||||||
void RejectCall();
|
void RejectCall();
|
||||||
|
|
||||||
|
void SendDtmf();
|
||||||
|
|
||||||
BoolFeedback InCallFeedback { get; }
|
BoolFeedback InCallFeedback { get; }
|
||||||
BoolFeedback IncomingCallFeedback { get; }
|
BoolFeedback IncomingCallFeedback { get; }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public interface IHasCallHistory
|
||||||
|
{
|
||||||
|
// Add recent calls list
|
||||||
|
}
|
||||||
|
|
||||||
|
public interface IHasDirectory
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public interface IHasObtp
|
||||||
|
{
|
||||||
|
|
||||||
|
// Upcoming Meeting warning event
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -11,7 +11,9 @@ namespace PepperDash.Essentials.Core
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public interface IHasSharing
|
public interface IHasSharing
|
||||||
{
|
{
|
||||||
|
void StartSharing();
|
||||||
|
void StopSharing();
|
||||||
|
|
||||||
BoolFeedback SharingSourceFeedback { get; }
|
StringFeedback SharingSourceFeedback { get; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -103,7 +103,7 @@
|
|||||||
<Reference Include="System.Data" />
|
<Reference Include="System.Data" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="Devices\IHasDialer.cs" />
|
<Compile Include="Devices\CodecInterfaces.cs" />
|
||||||
<Compile Include="Devices\IHasSharing.cs" />
|
<Compile Include="Devices\IHasSharing.cs" />
|
||||||
<Compile Include="Ramps and Increments\ActionIncrementer.cs" />
|
<Compile Include="Ramps and Increments\ActionIncrementer.cs" />
|
||||||
<Compile Include="Comm and IR\CommFactory.cs" />
|
<Compile Include="Comm and IR\CommFactory.cs" />
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ using PepperDash.Essentials.Core;
|
|||||||
|
|
||||||
namespace PepperDash.Essentials.Devices.VideoCodec
|
namespace PepperDash.Essentials.Devices.VideoCodec
|
||||||
{
|
{
|
||||||
public abstract class VideoCodecBase : Device, IRoutingSinkWithSwitching, IUsageTracking, IHasDialer //, ICodecAudio
|
public abstract class VideoCodecBase : Device, IRoutingSinkWithSwitching, IUsageTracking, IHasDialer, IHasSharing //, ICodecAudio
|
||||||
{
|
{
|
||||||
#region IUsageTracking Members
|
#region IUsageTracking Members
|
||||||
|
|
||||||
@@ -101,5 +101,11 @@ namespace PepperDash.Essentials.Devices.VideoCodec
|
|||||||
public BoolFeedback PrivacyModeIsOnFeedback { get; private set; }
|
public BoolFeedback PrivacyModeIsOnFeedback { get; private set; }
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
#region IHasSharing Members
|
||||||
|
|
||||||
|
public BoolFeedback SharingSourceFeedback { get; private set; }
|
||||||
|
|
||||||
|
#endregion
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user