ホーム › Media.DirectShow › AM_MPEG2Profile
AM_MPEG2Profile
列挙型メンバー 5
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| AM_MPEG2Profile_Simple | 1 | 0x1 | シンプルプロファイルです。 |
| AM_MPEG2Profile_Main | 2 | 0x2 | メインプロファイルです。 |
| AM_MPEG2Profile_SNRScalable | 3 | 0x3 | 信号対雑音比 (SNR) スケーラブルプロファイルです。 |
| AM_MPEG2Profile_SpatiallyScalable | 4 | 0x4 | 空間スケーラブルプロファイルです。 |
| AM_MPEG2Profile_High | 5 | 0x5 | ハイプロファイルです。 |
公式ドキュメント
[このページに関連する機能である 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 を使用するように書き換えることを推奨します。]
MPEG-2 ビデオ標準 (ISO13818-2) で規定されている MPEG-2 ビデオプロファイルを示します。
解説(Remarks)
DVD ビデオデコーダーは、AM_MPEG2Profile_Simple または AM_MPEG2Profile_Main をサポートする必要があります。
出典・ライセンス: 上記「公式ドキュメント」の内容は 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 AM_MPEG2Profile : int {
AM_MPEG2Profile_Simple = 1,
AM_MPEG2Profile_Main = 2,
AM_MPEG2Profile_SNRScalable = 3,
AM_MPEG2Profile_SpatiallyScalable = 4,
AM_MPEG2Profile_High = 5
} AM_MPEG2Profile;public enum AM_MPEG2Profile : int
{
AM_MPEG2Profile_Simple = 1,
AM_MPEG2Profile_Main = 2,
AM_MPEG2Profile_SNRScalable = 3,
AM_MPEG2Profile_SpatiallyScalable = 4,
AM_MPEG2Profile_High = 5,
}Public Enum AM_MPEG2Profile As Integer
AM_MPEG2Profile_Simple = 1
AM_MPEG2Profile_Main = 2
AM_MPEG2Profile_SNRScalable = 3
AM_MPEG2Profile_SpatiallyScalable = 4
AM_MPEG2Profile_High = 5
End Enumimport enum
class AM_MPEG2Profile(enum.IntEnum):
AM_MPEG2Profile_Simple = 1
AM_MPEG2Profile_Main = 2
AM_MPEG2Profile_SNRScalable = 3
AM_MPEG2Profile_SpatiallyScalable = 4
AM_MPEG2Profile_High = 5// AM_MPEG2Profile
pub const AM_MPEG2Profile_Simple: i32 = 1;
pub const AM_MPEG2Profile_Main: i32 = 2;
pub const AM_MPEG2Profile_SNRScalable: i32 = 3;
pub const AM_MPEG2Profile_SpatiallyScalable: i32 = 4;
pub const AM_MPEG2Profile_High: i32 = 5;// AM_MPEG2Profile
const (
AM_MPEG2Profile_Simple int32 = 1
AM_MPEG2Profile_Main int32 = 2
AM_MPEG2Profile_SNRScalable int32 = 3
AM_MPEG2Profile_SpatiallyScalable int32 = 4
AM_MPEG2Profile_High int32 = 5
)const
AM_MPEG2Profile_Simple = 1;
AM_MPEG2Profile_Main = 2;
AM_MPEG2Profile_SNRScalable = 3;
AM_MPEG2Profile_SpatiallyScalable = 4;
AM_MPEG2Profile_High = 5;// AM_MPEG2Profile
pub const AM_MPEG2Profile_Simple: i32 = 1;
pub const AM_MPEG2Profile_Main: i32 = 2;
pub const AM_MPEG2Profile_SNRScalable: i32 = 3;
pub const AM_MPEG2Profile_SpatiallyScalable: i32 = 4;
pub const AM_MPEG2Profile_High: i32 = 5;const
AM_MPEG2Profile_Simple* = 1
AM_MPEG2Profile_Main* = 2
AM_MPEG2Profile_SNRScalable* = 3
AM_MPEG2Profile_SpatiallyScalable* = 4
AM_MPEG2Profile_High* = 5enum AM_MPEG2Profile : int {
AM_MPEG2Profile_Simple = 1,
AM_MPEG2Profile_Main = 2,
AM_MPEG2Profile_SNRScalable = 3,
AM_MPEG2Profile_SpatiallyScalable = 4,
AM_MPEG2Profile_High = 5,
}#define global AM_MPEG2Profile_Simple 0x1
#define global AM_MPEG2Profile_Main 0x2
#define global AM_MPEG2Profile_SNRScalable 0x3
#define global AM_MPEG2Profile_SpatiallyScalable 0x4
#define global AM_MPEG2Profile_High 0x5