DirectShow DirectShow 레퍼런스 DirectShow 의 열거형 AM_SEEKING_SEEKING_CAPABILITIES   [목차열람] [주소복사] [슬롯비우기]
AM_SEEKING_SEEKING_CAPABILITIES 열거
 
Microsoft DirectX 9.0

AM_SEEKING_SEEKING_CAPABILITIES 열거

미디어 스트림의 시크 능력을 지정한다.

구문

typedef 
enum AM_SEEKING_SeekingCapabilities {
    AM_SEEKING_CanSeekAbsolute        = 0x1,
    AM_SEEKING_CanSeekForwards        = 0x2,
    AM_SEEKING_CanSeekBackwards       = 0x4,
    AM_SEEKING_CanGetCurrentPos       = 0x8,
    AM_SEEKING_CanGetStopPos          = 0x10,
    AM_SEEKING_CanGetDuration         = 0x20,
    AM_SEEKING_CanPlayBackwards       = 0x40,
    AM_SEEKING_CanDoSegments          = 0x80,
    AM_SEEKING_Source                 = 0x100
}   AM_SEEKING_SEEKING_CAPABILITIES;

엘리먼트

AM_SEEKING_CanSeekAbsolute

스트림은 절대 위치에 시크 할 수 있다.

AM_SEEKING_CanSeekForwards

스트림은 순서 방향으로 시크 할 수 있다.

AM_SEEKING_CanSeekBackwards

스트림은 역방향으로 시크 할 수 있다.

AM_SEEKING_CanGetCurrentPos

스트림은 현재 위치를 보고할 수 있다.

AM_SEEKING_CanGetStopPos

스트림은 정지 위치를 보고할 수 있다.

AM_SEEKING_CanGetDuration

스트림은 시간폭을 보고할 수 있다.

AM_SEEKING_CanPlayBackwards

스트림은 역방향으로 재생할 수 있다.

AM_SEEKING_CanDoSegments

스트림은 심리스 루프를 실시할 수 있다 (IMediaSeeking::SetPositions 를 참조).

AM_SEEKING_Source

예약이 끝난 상태.

참조

↑TOP