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

eAVEncMuxOutput

列挙型
基底型i4

メンバー 3

名前10進16進説明
eAVEncMuxOutputAuto00x0マルチプレクサーは、エレメンタリ ストリーム、プログラム ストリーム、トランスポート ストリームのいずれを出力するかを自動的に選択します。
eAVEncMuxOutputPS10x1マルチプレクサーはプログラム ストリームを出力します。
eAVEncMuxOutputTS20x2マルチプレクサーはトランスポート ストリームを出力します。

公式ドキュメント

[このページに関連する機能である DirectShow はレガシー機能です。この機能は MediaPlayerIMFMediaEngine、および Media Foundation でのオーディオ/ビデオ キャプチャ に置き換えられました。これらの機能は Windows 10 および Windows 11 向けに最適化されています。Microsoft は、新しいコードでは可能な限り DirectShow ではなく MediaPlayerIMFMediaEngineMedia Foundation でのオーディオ/ビデオ キャプチャ を使用することを強く推奨します。また、レガシー API を使用している既存のコードについても、可能であれば新しい API を使用するように書き換えることを推奨します。]

マルチプレクサーが生成する出力ストリームの種類を指定します。この列挙型は AVEncMuxOutputStreamType プロパティで使用されます。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

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

typedef enum eAVEncMuxOutput : int {
    eAVEncMuxOutputAuto = 0,
    eAVEncMuxOutputPS = 1,
    eAVEncMuxOutputTS = 2
} eAVEncMuxOutput;
public enum eAVEncMuxOutput : int
{
    eAVEncMuxOutputAuto = 0,
    eAVEncMuxOutputPS = 1,
    eAVEncMuxOutputTS = 2,
}
Public Enum eAVEncMuxOutput As Integer
    eAVEncMuxOutputAuto = 0
    eAVEncMuxOutputPS = 1
    eAVEncMuxOutputTS = 2
End Enum
import enum

class eAVEncMuxOutput(enum.IntEnum):
    eAVEncMuxOutputAuto = 0
    eAVEncMuxOutputPS = 1
    eAVEncMuxOutputTS = 2
// eAVEncMuxOutput
pub const eAVEncMuxOutputAuto: i32 = 0;
pub const eAVEncMuxOutputPS: i32 = 1;
pub const eAVEncMuxOutputTS: i32 = 2;
// eAVEncMuxOutput
const (
	eAVEncMuxOutputAuto int32 = 0
	eAVEncMuxOutputPS int32 = 1
	eAVEncMuxOutputTS int32 = 2
)
const
  eAVEncMuxOutputAuto = 0;
  eAVEncMuxOutputPS = 1;
  eAVEncMuxOutputTS = 2;
// eAVEncMuxOutput
pub const eAVEncMuxOutputAuto: i32 = 0;
pub const eAVEncMuxOutputPS: i32 = 1;
pub const eAVEncMuxOutputTS: i32 = 2;
const
  eAVEncMuxOutputAuto* = 0
  eAVEncMuxOutputPS* = 1
  eAVEncMuxOutputTS* = 2
enum eAVEncMuxOutput : int {
    eAVEncMuxOutputAuto = 0,
    eAVEncMuxOutputPS = 1,
    eAVEncMuxOutputTS = 2,
}
#define global eAVEncMuxOutputAuto 0x0
#define global eAVEncMuxOutputPS   0x1
#define global eAVEncMuxOutputTS   0x2