mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 12:06:58 +00:00
updates for dual-display Fusion
This commit is contained in:
parent
3856a96e5f
commit
374ce13add
2 changed files with 12 additions and 8 deletions
|
|
@ -20,7 +20,12 @@ namespace PepperDash.Essentials.Core.Fusion
|
|||
|
||||
protected override void ExecuteCustomSteps()
|
||||
{
|
||||
var leftDisplay = _room.LeftDisplay as DisplayBase;
|
||||
var rightDisplay = _room.RightDisplay as DisplayBase;
|
||||
|
||||
SetUpCodec();
|
||||
SetUpDisplay(leftDisplay);
|
||||
SetUpDisplay(rightDisplay);
|
||||
base.ExecuteCustomSteps();
|
||||
}
|
||||
|
||||
|
|
@ -30,7 +35,12 @@ namespace PepperDash.Essentials.Core.Fusion
|
|||
|
||||
protected override void SetUpDisplay()
|
||||
{
|
||||
base.SetUpDisplay();
|
||||
//todo figure out what to do here...
|
||||
}
|
||||
|
||||
private void SetUpDisplay(DisplayBase display)
|
||||
{
|
||||
FusionAsset tempAsset;
|
||||
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -34,13 +34,7 @@ namespace PepperDash.Essentials.Core.Fusion
|
|||
{
|
||||
try
|
||||
{
|
||||
var essentialsHuddleVtc1Room = Room as EssentialsHuddleVtc1Room;
|
||||
if (essentialsHuddleVtc1Room == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
var codec = essentialsHuddleVtc1Room.VideoCodec;
|
||||
var codec = _room.VideoCodec;
|
||||
|
||||
if (codec == null)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue