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

eAVEncVideoContentType

列挙型
基底型i4

メンバー 2

名前10進16進説明
eAVEncVideoContentType_Unknown00x0不明なコンテンツ、または通常のコンテンツです。(既定値)
eAVEncVideoContentType_FixedCameraAngle10x1Web カメラなど、固定されたカメラでキャプチャされたコンテンツです。

公式ドキュメント

ビデオコンテンツの種類を指定します。この列挙型は CODECAPI_AVEncVideoContentType プロパティで使用されます。

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

各言語での定義

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

typedef enum eAVEncVideoContentType : int {
    eAVEncVideoContentType_Unknown = 0,
    eAVEncVideoContentType_FixedCameraAngle = 1
} eAVEncVideoContentType;
public enum eAVEncVideoContentType : int
{
    eAVEncVideoContentType_Unknown = 0,
    eAVEncVideoContentType_FixedCameraAngle = 1,
}
Public Enum eAVEncVideoContentType As Integer
    eAVEncVideoContentType_Unknown = 0
    eAVEncVideoContentType_FixedCameraAngle = 1
End Enum
import enum

class eAVEncVideoContentType(enum.IntEnum):
    eAVEncVideoContentType_Unknown = 0
    eAVEncVideoContentType_FixedCameraAngle = 1
// eAVEncVideoContentType
pub const eAVEncVideoContentType_Unknown: i32 = 0;
pub const eAVEncVideoContentType_FixedCameraAngle: i32 = 1;
// eAVEncVideoContentType
const (
	eAVEncVideoContentType_Unknown int32 = 0
	eAVEncVideoContentType_FixedCameraAngle int32 = 1
)
const
  eAVEncVideoContentType_Unknown = 0;
  eAVEncVideoContentType_FixedCameraAngle = 1;
// eAVEncVideoContentType
pub const eAVEncVideoContentType_Unknown: i32 = 0;
pub const eAVEncVideoContentType_FixedCameraAngle: i32 = 1;
const
  eAVEncVideoContentType_Unknown* = 0
  eAVEncVideoContentType_FixedCameraAngle* = 1
enum eAVEncVideoContentType : int {
    eAVEncVideoContentType_Unknown = 0,
    eAVEncVideoContentType_FixedCameraAngle = 1,
}
#define global eAVEncVideoContentType_Unknown          0x0
#define global eAVEncVideoContentType_FixedCameraAngle 0x1