Enum VLDSVideoPlayer.TVLDSPlayerCapability
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: VideoLabBasicPkg
Unit: VLDSVideoPlayer
Contents |
Syntax
Delphi:
type TVLDSPlayerCapability = (pcCanSeekAbsolute, pcCanSeekForwards, pcCanSeekBackwards, pcCanGetCurrentPos, pcCanGetStopPos, pcCanGetDuration, pcCanPlayBackwards, pcCanDoSegments);
C++ Builder:
enum TVLDSPlayerCapability {pcCanSeekAbsolute, pcCanSeekForwards, pcCanSeekBackwards, pcCanGetCurrentPos, pcCanGetStopPos, pcCanGetDuration, pcCanPlayBackwards, pcCanDoSegments};
Visual C++ (MFC):
enum CTVLDSPlayerCapability {pcCanSeekAbsolute, pcCanSeekForwards, pcCanSeekBackwards, pcCanGetCurrentPos, pcCanGetStopPos, pcCanGetDuration, pcCanPlayBackwards, pcCanDoSegments};
Summary
Enumerated type for the DirectShow player capabilities.
Description
Defines enumerated type for the DirectShow player capabilities.
Values
pcCanSeekAbsolute | Can seek absolute. |
pcCanSeekForwards | Can seek forwards. |
pcCanSeekBackwards | Can seek backwards. |
pcCanGetCurrentPos | Can get the current playing position. |
pcCanGetStopPos | Can get the current stop position. |
pcCanGetDuration | Can get the current playing duration. |
pcCanPlayBackwards | Can play backwards. |
pcCanDoSegments | Can play segments. |