public void RefreshPlay() { if (mVS != null) { mVS.RefreshPlay(); } }
public void RefreshPlay() { if (mVideoSource != null) { mVideoSource.RefreshPlay(); } }
public void RefreshPlay() { IVideoSource vs = GetVideoSource(); if (vs != null) { vs.RefreshPlay(); } }
public void RefreshPlay() { PlayBoxCtrl[] boxList = mBoxManager.BoxList; if (boxList != null) { foreach (PlayBoxCtrl playBox in boxList) { CFuncNode node = playBox.LinkObj as CFuncNode; if (node != null) { IVideoSource vs = node.ExtObj as IVideoSource; if (vs != null) { vs.RefreshPlay(); } } } if (OnRefreshPlay != null) { OnRefreshPlay(PlayBoxs); } } }