using PepperDash.Essentials.Core;
namespace PepperDash.Essentials.Devices.Common.VideoCodec
{
///
/// Defines the required elements for layout control
///
public interface IHasCodecLayouts
{
///
/// Feedback that indicates the current layout on the local display
///
StringFeedback LocalLayoutFeedback { get; }
///
/// Toggles the local layout
///
void LocalLayoutToggle();
///
/// Toggles the local layout to single prominent
///
void LocalLayoutToggleSingleProminent();
///
/// Toggle the MinMax layout
///
void MinMaxLayoutToggle();
}
}