ホーム › Media.MediaFoundation › eAVEncVideoSourceScanType
eAVEncVideoSourceScanType
列挙型メンバー 3
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| eAVEncVideoSourceScan_Automatic | 0 | 0x0 | エンコーダーの入力ピンのメディア タイプを使用して、フレームがプログレッシブかインターレースかを判別します。 |
| eAVEncVideoSourceScan_Interlaced | 1 | 0x1 | 入力フレームはインターレースです。 |
| eAVEncVideoSourceScan_Progressive | 2 | 0x2 | 入力フレームはプログレッシブです。 |
公式ドキュメント
[このページに関連する機能である DirectShow はレガシー機能です。この機能は MediaPlayer、IMFMediaEngine、および Audio/Video Capture in Media Foundation に置き換えられました。これらの機能は Windows 10 および Windows 11 向けに最適化されています。Microsoft は、可能な場合は新しいコードで DirectShow ではなく MediaPlayer、IMFMediaEngine、Audio/Video Capture in Media Foundation を使用することを強く推奨します。既存のコードでレガシー API を使用している場合も、可能であれば新しい API を使用するように書き換えることをお勧めします。]
エンコーダーへの入力フレームがプログレッシブかインターレースかを指定します。この列挙型は AVEncVideoForceSourceScanType プロパティと共に使用されます。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 2enum 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