Win32 API 日本語リファレンス
ホームMedia.MediaFoundation › eAVEncVideoSourceScanType

eAVEncVideoSourceScanType

列挙型
基底型i4

メンバー 3

名前10進16進
eAVEncVideoSourceScan_Automatic00x0
eAVEncVideoSourceScan_Interlaced10x1
eAVEncVideoSourceScan_Progressive20x2

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum eAVEncVideoSourceScanType : int {
    eAVEncVideoSourceScan_Automatic = 0,
    eAVEncVideoSourceScan_Interlaced = 1,
    eAVEncVideoSourceScan_Progressive = 2
} eAVEncVideoSourceScanType;
public enum eAVEncVideoSourceScanType : int
{
    eAVEncVideoSourceScan_Automatic = 0,
    eAVEncVideoSourceScan_Interlaced = 1,
    eAVEncVideoSourceScan_Progressive = 2,
}
Public Enum eAVEncVideoSourceScanType As Integer
    eAVEncVideoSourceScan_Automatic = 0
    eAVEncVideoSourceScan_Interlaced = 1
    eAVEncVideoSourceScan_Progressive = 2
End Enum
import enum

class eAVEncVideoSourceScanType(enum.IntEnum):
    eAVEncVideoSourceScan_Automatic = 0
    eAVEncVideoSourceScan_Interlaced = 1
    eAVEncVideoSourceScan_Progressive = 2
// eAVEncVideoSourceScanType
pub const eAVEncVideoSourceScan_Automatic: i32 = 0;
pub const eAVEncVideoSourceScan_Interlaced: i32 = 1;
pub const eAVEncVideoSourceScan_Progressive: i32 = 2;
// eAVEncVideoSourceScanType
const (
	eAVEncVideoSourceScan_Automatic int32 = 0
	eAVEncVideoSourceScan_Interlaced int32 = 1
	eAVEncVideoSourceScan_Progressive int32 = 2
)
const
  eAVEncVideoSourceScan_Automatic = 0;
  eAVEncVideoSourceScan_Interlaced = 1;
  eAVEncVideoSourceScan_Progressive = 2;
// eAVEncVideoSourceScanType
pub const eAVEncVideoSourceScan_Automatic: i32 = 0;
pub const eAVEncVideoSourceScan_Interlaced: i32 = 1;
pub const eAVEncVideoSourceScan_Progressive: i32 = 2;
const
  eAVEncVideoSourceScan_Automatic* = 0
  eAVEncVideoSourceScan_Interlaced* = 1
  eAVEncVideoSourceScan_Progressive* = 2
enum eAVEncVideoSourceScanType : int {
    eAVEncVideoSourceScan_Automatic = 0,
    eAVEncVideoSourceScan_Interlaced = 1,
    eAVEncVideoSourceScan_Progressive = 2,
}
#define global eAVEncVideoSourceScan_Automatic   0x0
#define global eAVEncVideoSourceScan_Interlaced  0x1
#define global eAVEncVideoSourceScan_Progressive 0x2