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

COPP_ConnectorType

列挙型
基底型i4

メンバー 12

名前10進16進説明
COPP_ConnectorType_Unknown-10xFFFFFFFF不明なコネクターの種類です。
COPP_ConnectorType_VGA00x0VGA (Video Graphics Array) コネクターです。
COPP_ConnectorType_SVideo10x1S-Video コネクターです。
COPP_ConnectorType_CompositeVideo20x2コンポジットビデオコネクターです。
COPP_ConnectorType_ComponentVideo30x3コンポーネントビデオコネクターです。
COPP_ConnectorType_DVI40x4DVI (digital video interface) コネクターです。
COPP_ConnectorType_HDMI50x5HDMI (high-definition multimedia interface) コネクターです。
COPP_ConnectorType_LVDS60x6LVDS (Low voltage differential signaling) コネクターです。
COPP_ConnectorType_TMDS70x7予約済みです。
COPP_ConnectorType_D_JPN80x8日本の D 端子コネクターです。(EIAJ RC-5237 規格に準拠したコネクターです。)
COPP_ConnectorType_Internal-21474836480x80000000内部コネクターです。このフラグは他のフラグと組み合わせて使用できます。このフラグは、グラフィックスアダプターとディスプレイデバイスの間の接続が恒久的なものであり、ユーザーがアクセスできないことを示します。
COPP_ConnectorType_ForceDWORD21474836470x7FFFFFFF予約済みです。使用しないでください。

公式ドキュメント

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

物理コネクターの種類を指定します。

解説(Remarks)

コネクターが embedded (埋め込み) または integrated (統合) と記述されている場合、そのコネクターは内部コネクターであることを意味します。これらのコネクターは、列挙型定数の名前に "Embedded" が含まれています。

アプリケーションは COPP_ConnectorType_Internal フラグを無視し、代わりに定数名に "Embedded" を含むコネクターの種類を確認してください。

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

各言語での定義

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

typedef enum COPP_ConnectorType : int {
    COPP_ConnectorType_Unknown = -1,
    COPP_ConnectorType_VGA = 0,
    COPP_ConnectorType_SVideo = 1,
    COPP_ConnectorType_CompositeVideo = 2,
    COPP_ConnectorType_ComponentVideo = 3,
    COPP_ConnectorType_DVI = 4,
    COPP_ConnectorType_HDMI = 5,
    COPP_ConnectorType_LVDS = 6,
    COPP_ConnectorType_TMDS = 7,
    COPP_ConnectorType_D_JPN = 8,
    COPP_ConnectorType_Internal = -2147483648,
    COPP_ConnectorType_ForceDWORD = 2147483647
} COPP_ConnectorType;
public enum COPP_ConnectorType : int
{
    COPP_ConnectorType_Unknown = -1,
    COPP_ConnectorType_VGA = 0,
    COPP_ConnectorType_SVideo = 1,
    COPP_ConnectorType_CompositeVideo = 2,
    COPP_ConnectorType_ComponentVideo = 3,
    COPP_ConnectorType_DVI = 4,
    COPP_ConnectorType_HDMI = 5,
    COPP_ConnectorType_LVDS = 6,
    COPP_ConnectorType_TMDS = 7,
    COPP_ConnectorType_D_JPN = 8,
    COPP_ConnectorType_Internal = -2147483648,
    COPP_ConnectorType_ForceDWORD = 2147483647,
}
Public Enum COPP_ConnectorType As Integer
    COPP_ConnectorType_Unknown = -1
    COPP_ConnectorType_VGA = 0
    COPP_ConnectorType_SVideo = 1
    COPP_ConnectorType_CompositeVideo = 2
    COPP_ConnectorType_ComponentVideo = 3
    COPP_ConnectorType_DVI = 4
    COPP_ConnectorType_HDMI = 5
    COPP_ConnectorType_LVDS = 6
    COPP_ConnectorType_TMDS = 7
    COPP_ConnectorType_D_JPN = 8
    COPP_ConnectorType_Internal = -2147483648
    COPP_ConnectorType_ForceDWORD = 2147483647
End Enum
import enum

class COPP_ConnectorType(enum.IntEnum):
    COPP_ConnectorType_Unknown = -1
    COPP_ConnectorType_VGA = 0
    COPP_ConnectorType_SVideo = 1
    COPP_ConnectorType_CompositeVideo = 2
    COPP_ConnectorType_ComponentVideo = 3
    COPP_ConnectorType_DVI = 4
    COPP_ConnectorType_HDMI = 5
    COPP_ConnectorType_LVDS = 6
    COPP_ConnectorType_TMDS = 7
    COPP_ConnectorType_D_JPN = 8
    COPP_ConnectorType_Internal = -2147483648
    COPP_ConnectorType_ForceDWORD = 2147483647
// COPP_ConnectorType
pub const COPP_ConnectorType_Unknown: i32 = -1;
pub const COPP_ConnectorType_VGA: i32 = 0;
pub const COPP_ConnectorType_SVideo: i32 = 1;
pub const COPP_ConnectorType_CompositeVideo: i32 = 2;
pub const COPP_ConnectorType_ComponentVideo: i32 = 3;
pub const COPP_ConnectorType_DVI: i32 = 4;
pub const COPP_ConnectorType_HDMI: i32 = 5;
pub const COPP_ConnectorType_LVDS: i32 = 6;
pub const COPP_ConnectorType_TMDS: i32 = 7;
pub const COPP_ConnectorType_D_JPN: i32 = 8;
pub const COPP_ConnectorType_Internal: i32 = -2147483648;
pub const COPP_ConnectorType_ForceDWORD: i32 = 2147483647;
// COPP_ConnectorType
const (
	COPP_ConnectorType_Unknown int32 = -1
	COPP_ConnectorType_VGA int32 = 0
	COPP_ConnectorType_SVideo int32 = 1
	COPP_ConnectorType_CompositeVideo int32 = 2
	COPP_ConnectorType_ComponentVideo int32 = 3
	COPP_ConnectorType_DVI int32 = 4
	COPP_ConnectorType_HDMI int32 = 5
	COPP_ConnectorType_LVDS int32 = 6
	COPP_ConnectorType_TMDS int32 = 7
	COPP_ConnectorType_D_JPN int32 = 8
	COPP_ConnectorType_Internal int32 = -2147483648
	COPP_ConnectorType_ForceDWORD int32 = 2147483647
)
const
  COPP_ConnectorType_Unknown = -1;
  COPP_ConnectorType_VGA = 0;
  COPP_ConnectorType_SVideo = 1;
  COPP_ConnectorType_CompositeVideo = 2;
  COPP_ConnectorType_ComponentVideo = 3;
  COPP_ConnectorType_DVI = 4;
  COPP_ConnectorType_HDMI = 5;
  COPP_ConnectorType_LVDS = 6;
  COPP_ConnectorType_TMDS = 7;
  COPP_ConnectorType_D_JPN = 8;
  COPP_ConnectorType_Internal = -2147483648;
  COPP_ConnectorType_ForceDWORD = 2147483647;
// COPP_ConnectorType
pub const COPP_ConnectorType_Unknown: i32 = -1;
pub const COPP_ConnectorType_VGA: i32 = 0;
pub const COPP_ConnectorType_SVideo: i32 = 1;
pub const COPP_ConnectorType_CompositeVideo: i32 = 2;
pub const COPP_ConnectorType_ComponentVideo: i32 = 3;
pub const COPP_ConnectorType_DVI: i32 = 4;
pub const COPP_ConnectorType_HDMI: i32 = 5;
pub const COPP_ConnectorType_LVDS: i32 = 6;
pub const COPP_ConnectorType_TMDS: i32 = 7;
pub const COPP_ConnectorType_D_JPN: i32 = 8;
pub const COPP_ConnectorType_Internal: i32 = -2147483648;
pub const COPP_ConnectorType_ForceDWORD: i32 = 2147483647;
const
  COPP_ConnectorType_Unknown* = -1
  COPP_ConnectorType_VGA* = 0
  COPP_ConnectorType_SVideo* = 1
  COPP_ConnectorType_CompositeVideo* = 2
  COPP_ConnectorType_ComponentVideo* = 3
  COPP_ConnectorType_DVI* = 4
  COPP_ConnectorType_HDMI* = 5
  COPP_ConnectorType_LVDS* = 6
  COPP_ConnectorType_TMDS* = 7
  COPP_ConnectorType_D_JPN* = 8
  COPP_ConnectorType_Internal* = -2147483648
  COPP_ConnectorType_ForceDWORD* = 2147483647
enum COPP_ConnectorType : int {
    COPP_ConnectorType_Unknown = -1,
    COPP_ConnectorType_VGA = 0,
    COPP_ConnectorType_SVideo = 1,
    COPP_ConnectorType_CompositeVideo = 2,
    COPP_ConnectorType_ComponentVideo = 3,
    COPP_ConnectorType_DVI = 4,
    COPP_ConnectorType_HDMI = 5,
    COPP_ConnectorType_LVDS = 6,
    COPP_ConnectorType_TMDS = 7,
    COPP_ConnectorType_D_JPN = 8,
    COPP_ConnectorType_Internal = -2147483648,
    COPP_ConnectorType_ForceDWORD = 2147483647,
}
#define global COPP_ConnectorType_Unknown        0xFFFFFFFF
#define global COPP_ConnectorType_VGA            0x0
#define global COPP_ConnectorType_SVideo         0x1
#define global COPP_ConnectorType_CompositeVideo 0x2
#define global COPP_ConnectorType_ComponentVideo 0x3
#define global COPP_ConnectorType_DVI            0x4
#define global COPP_ConnectorType_HDMI           0x5
#define global COPP_ConnectorType_LVDS           0x6
#define global COPP_ConnectorType_TMDS           0x7
#define global COPP_ConnectorType_D_JPN          0x8
#define global COPP_ConnectorType_Internal       0x80000000
#define global COPP_ConnectorType_ForceDWORD     0x7FFFFFFF