Click or drag to resize
XDL

XVideo_Event_PlaybackControl Delegate

동영상 재생 제어 관련 이벤트를 정의한다.

Namespace:  Pixoneer.NXDL.NXVideo
Assembly:  NXVideo (in NXVideo.dll) Version: 2.0.3.31
Syntax
C#
public delegate void XVideo_Event_PlaybackControl(
	XVideoChannel channel,
	eControlStatus status,
	long pts,
	long ptsReq
)

Parameters

channel
Type: Pixoneer.NXDL.NXVideoXVideoChannel
이벤트 발생 동영상 채널.
status
Type: Pixoneer.NXDL.NXVideoeControlStatus
재생/멈춤/탐색 등 재생 제어 상태.
pts
Type: SystemInt64
제어 상태 변경 시점의 비디오 패킷 PTS.
ptsReq
Type: SystemInt64
제어 명령 요청 대상 PTS. 현재 탐색 상태에서만 유효한 값을 가진다.
Remarks
렌더링 준비 상태에서 이벤트를 호출하므로 정확한 화면 표시 시점은 비디오뷰 렌더 콜백에서 확인해야 한다.
See Also