@@ -481,6 +481,9 @@ CHIP_ERROR CastingServer::VerifyOrEstablishConnection(TargetVideoPlayerInfo & ta
481
481
{
482
482
return CHIP_ERROR_INVALID_ARGUMENT;
483
483
}
484
+ int cacheIndex = GetCachedVideoPlayerIndex (&targetVideoPlayerInfo);
485
+ VerifyOrReturnError (cacheIndex >= 0 , CHIP_ERROR_INVALID_ARGUMENT);
486
+
484
487
mOnConnectionSuccessClientCallback = onConnectionSuccess;
485
488
mOnConnectionFailureClientCallback = onConnectionFailure;
486
489
mOnNewOrUpdatedEndpoint = onNewOrUpdatedEndpoint;
@@ -493,12 +496,13 @@ CHIP_ERROR CastingServer::VerifyOrEstablishConnection(TargetVideoPlayerInfo & ta
493
496
prevDeviceProxy->Disconnect ();
494
497
}
495
498
496
- CastingServer::GetInstance ()->mActiveTargetVideoPlayerInfo = targetVideoPlayerInfo ;
499
+ CastingServer::GetInstance ()->mActiveTargetVideoPlayerInfo = mCachedTargetVideoPlayerInfo [cacheIndex] ;
497
500
uint32_t delay = 0 ;
498
- if (targetVideoPlayerInfo .IsAsleep ())
501
+ if (CastingServer::GetInstance ()-> mActiveTargetVideoPlayerInfo .IsAsleep ())
499
502
{
500
503
ChipLogProgress (AppServer, " CastingServer::VerifyOrEstablishConnection(): Sending WoL to sleeping VideoPlayer and waiting" );
501
- ReturnErrorOnFailure (CastingServer::GetInstance ()->SendWakeOnLan (targetVideoPlayerInfo));
504
+ ReturnErrorOnFailure (
505
+ CastingServer::GetInstance ()->SendWakeOnLan (CastingServer::GetInstance ()->mActiveTargetVideoPlayerInfo ));
502
506
503
507
#ifdef CHIP_DEVICE_CONFIG_STR_WAKE_UP_DELAY_SEC
504
508
delay = CHIP_DEVICE_CONFIG_STR_WAKE_UP_DELAY_SEC * 1000 ;
@@ -511,6 +515,21 @@ CHIP_ERROR CastingServer::VerifyOrEstablishConnection(TargetVideoPlayerInfo & ta
511
515
nullptr );
512
516
}
513
517
518
+ int CastingServer::GetCachedVideoPlayerIndex (TargetVideoPlayerInfo * targetVideoPlayerInfo)
519
+ {
520
+ if (targetVideoPlayerInfo != nullptr )
521
+ {
522
+ for (size_t i = 0 ; i < kMaxCachedVideoPlayers && mCachedTargetVideoPlayerInfo [i].IsInitialized (); i++)
523
+ {
524
+ if (mCachedTargetVideoPlayerInfo [i] == *targetVideoPlayerInfo)
525
+ {
526
+ return static_cast <int >(i);
527
+ }
528
+ }
529
+ }
530
+ return -1 ;
531
+ }
532
+
514
533
void CastingServer::VerifyOrEstablishConnectionTask (chip::System::Layer * aSystemLayer, void * context)
515
534
{
516
535
ChipLogProgress (AppServer, " CastingServer::VerifyOrEstablishConnectionTask called" );
0 commit comments