ホーム › Media.DirectShow › DVD_AUDIO_FORMAT
DVD_AUDIO_FORMAT
列挙型メンバー 9
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| DVD_AudioFormat_AC3 | 0 | 0x0 | 音声形式は Dolby AC-3 です。 |
| DVD_AudioFormat_MPEG1 | 1 | 0x1 | 音声形式は MPEG-1 です。 |
| DVD_AudioFormat_MPEG1_DRC | 2 | 0x2 | 音声形式はダイナミック レンジ コントロール付きの MPEG-1 です。 |
| DVD_AudioFormat_MPEG2 | 3 | 0x3 | 音声形式は MPEG-2 です。 |
| DVD_AudioFormat_MPEG2_DRC | 4 | 0x4 | 音声形式はダイナミック レンジ コントロール付きの MPEG-2 です。 |
| DVD_AudioFormat_LPCM | 5 | 0x5 | 音声形式はリニア PCM (LPCM) です。 |
| DVD_AudioFormat_DTS | 6 | 0x6 | 音声形式は Digital Theater Systems (DTS) です。 |
| DVD_AudioFormat_SDDS | 7 | 0x7 | 音声形式は Sony Dynamic Digital Sound (SDDS) です。 |
| DVD_AudioFormat_Other | 8 | 0x8 | 音声形式が認識できません。 |
公式ドキュメント
[このページに関連する機能である 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 を使用するように書き換えることを推奨します。]
DVD の音声形式を示します。
解説(Remarks)
この列挙型は DVD_AudioAttributes 構造体のメンバーです。
出典・ライセンス: 上記「公式ドキュメント」の内容は 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 DVD_AUDIO_FORMAT : int {
DVD_AudioFormat_AC3 = 0,
DVD_AudioFormat_MPEG1 = 1,
DVD_AudioFormat_MPEG1_DRC = 2,
DVD_AudioFormat_MPEG2 = 3,
DVD_AudioFormat_MPEG2_DRC = 4,
DVD_AudioFormat_LPCM = 5,
DVD_AudioFormat_DTS = 6,
DVD_AudioFormat_SDDS = 7,
DVD_AudioFormat_Other = 8
} DVD_AUDIO_FORMAT;public enum DVD_AUDIO_FORMAT : int
{
DVD_AudioFormat_AC3 = 0,
DVD_AudioFormat_MPEG1 = 1,
DVD_AudioFormat_MPEG1_DRC = 2,
DVD_AudioFormat_MPEG2 = 3,
DVD_AudioFormat_MPEG2_DRC = 4,
DVD_AudioFormat_LPCM = 5,
DVD_AudioFormat_DTS = 6,
DVD_AudioFormat_SDDS = 7,
DVD_AudioFormat_Other = 8,
}Public Enum DVD_AUDIO_FORMAT As Integer
DVD_AudioFormat_AC3 = 0
DVD_AudioFormat_MPEG1 = 1
DVD_AudioFormat_MPEG1_DRC = 2
DVD_AudioFormat_MPEG2 = 3
DVD_AudioFormat_MPEG2_DRC = 4
DVD_AudioFormat_LPCM = 5
DVD_AudioFormat_DTS = 6
DVD_AudioFormat_SDDS = 7
DVD_AudioFormat_Other = 8
End Enumimport enum
class DVD_AUDIO_FORMAT(enum.IntEnum):
DVD_AudioFormat_AC3 = 0
DVD_AudioFormat_MPEG1 = 1
DVD_AudioFormat_MPEG1_DRC = 2
DVD_AudioFormat_MPEG2 = 3
DVD_AudioFormat_MPEG2_DRC = 4
DVD_AudioFormat_LPCM = 5
DVD_AudioFormat_DTS = 6
DVD_AudioFormat_SDDS = 7
DVD_AudioFormat_Other = 8// DVD_AUDIO_FORMAT
pub const DVD_AudioFormat_AC3: i32 = 0;
pub const DVD_AudioFormat_MPEG1: i32 = 1;
pub const DVD_AudioFormat_MPEG1_DRC: i32 = 2;
pub const DVD_AudioFormat_MPEG2: i32 = 3;
pub const DVD_AudioFormat_MPEG2_DRC: i32 = 4;
pub const DVD_AudioFormat_LPCM: i32 = 5;
pub const DVD_AudioFormat_DTS: i32 = 6;
pub const DVD_AudioFormat_SDDS: i32 = 7;
pub const DVD_AudioFormat_Other: i32 = 8;// DVD_AUDIO_FORMAT
const (
DVD_AudioFormat_AC3 int32 = 0
DVD_AudioFormat_MPEG1 int32 = 1
DVD_AudioFormat_MPEG1_DRC int32 = 2
DVD_AudioFormat_MPEG2 int32 = 3
DVD_AudioFormat_MPEG2_DRC int32 = 4
DVD_AudioFormat_LPCM int32 = 5
DVD_AudioFormat_DTS int32 = 6
DVD_AudioFormat_SDDS int32 = 7
DVD_AudioFormat_Other int32 = 8
)const
DVD_AudioFormat_AC3 = 0;
DVD_AudioFormat_MPEG1 = 1;
DVD_AudioFormat_MPEG1_DRC = 2;
DVD_AudioFormat_MPEG2 = 3;
DVD_AudioFormat_MPEG2_DRC = 4;
DVD_AudioFormat_LPCM = 5;
DVD_AudioFormat_DTS = 6;
DVD_AudioFormat_SDDS = 7;
DVD_AudioFormat_Other = 8;// DVD_AUDIO_FORMAT
pub const DVD_AudioFormat_AC3: i32 = 0;
pub const DVD_AudioFormat_MPEG1: i32 = 1;
pub const DVD_AudioFormat_MPEG1_DRC: i32 = 2;
pub const DVD_AudioFormat_MPEG2: i32 = 3;
pub const DVD_AudioFormat_MPEG2_DRC: i32 = 4;
pub const DVD_AudioFormat_LPCM: i32 = 5;
pub const DVD_AudioFormat_DTS: i32 = 6;
pub const DVD_AudioFormat_SDDS: i32 = 7;
pub const DVD_AudioFormat_Other: i32 = 8;const
DVD_AudioFormat_AC3* = 0
DVD_AudioFormat_MPEG1* = 1
DVD_AudioFormat_MPEG1_DRC* = 2
DVD_AudioFormat_MPEG2* = 3
DVD_AudioFormat_MPEG2_DRC* = 4
DVD_AudioFormat_LPCM* = 5
DVD_AudioFormat_DTS* = 6
DVD_AudioFormat_SDDS* = 7
DVD_AudioFormat_Other* = 8enum DVD_AUDIO_FORMAT : int {
DVD_AudioFormat_AC3 = 0,
DVD_AudioFormat_MPEG1 = 1,
DVD_AudioFormat_MPEG1_DRC = 2,
DVD_AudioFormat_MPEG2 = 3,
DVD_AudioFormat_MPEG2_DRC = 4,
DVD_AudioFormat_LPCM = 5,
DVD_AudioFormat_DTS = 6,
DVD_AudioFormat_SDDS = 7,
DVD_AudioFormat_Other = 8,
}#define global DVD_AudioFormat_AC3 0x0
#define global DVD_AudioFormat_MPEG1 0x1
#define global DVD_AudioFormat_MPEG1_DRC 0x2
#define global DVD_AudioFormat_MPEG2 0x3
#define global DVD_AudioFormat_MPEG2_DRC 0x4
#define global DVD_AudioFormat_LPCM 0x5
#define global DVD_AudioFormat_DTS 0x6
#define global DVD_AudioFormat_SDDS 0x7
#define global DVD_AudioFormat_Other 0x8