/** @public */ export interface FrameRate { frames: number; seconds: number; } /** @public */ export type LogicalCpuId = number; /** @public */ export interface Core { logicalCpuIds: LogicalCpuId[]; } /** @public */ export interface Processor { cores: Core[]; } /** @public */ export interface NumaNode { processors: Processor[]; } /** @public */ export interface CpuTopology { numaNodes: NumaNode[]; } /** @public */ export type DeckLinkVideoConnection = "sdi" | "hdmi" | "optical_sdi" | "component" | "composite" | "svideo"; /** @public */ export type DeckLinkVideoIOSupport = "capture" | "playback"; /** @public */ export type DeckLinkPixelFormat = "uyvy" | "argb"; /** @public */ export interface DeckLinkCard { index: number; displayName: string; inputConnections: DeckLinkVideoConnection[]; outputConnections: DeckLinkVideoConnection[]; ioSupport: DeckLinkVideoIOSupport[]; } /** @public */ export type DeckLinkDisplayModeId = "auto" | "sd_ntsc" | "sd_nt23" | "sd_pal" | "sd_ntsp" | "sd_palp" | "hd1080_23ps" | "hd1080_24ps" | "hd1080_p25" | "hd1080_p29" | "hd1080_p30" | "hd1080_p47" | "hd1080_p48" | "hd1080_i50" | "hd1080_i59" | "hd1080_i60" | "hd1080_p95" | "hd1080_p96" | "hd1080_p10" | "hd1080_p11" | "hd1080_p12" | "hd1080_p50" | "hd1080_p59" | "hd1080_p60" | "hd720_p50" | "hd720_p59" | "hd720_p60" | "two_k_23" | "two_k_24" | "two_k_25" | "two_k_dci_23" | "two_k_dci_24" | "two_k_dci_25" | "two_k_dci_29" | "two_k_dci_30" | "two_k_dci_47" | "two_k_dci_48" | "two_k_dci_50" | "two_k_dci_59" | "two_k_dci_60" | "two_k_dci_95" | "two_k_dci_96" | "two_k_dci_10" | "two_k_dci_11" | "two_k_dci_12" | "four_k_23" | "four_k_24" | "four_k_25" | "four_k_29" | "four_k_30" | "four_k_47" | "four_k_48" | "four_k_50" | "four_k_59" | "four_k_60" | "four_k_95" | "four_k_96" | "four_k_10" | "four_k_11" | "four_k_12" | "four_k_dci_23" | "four_k_dci_24" | "four_k_dci_25" | "four_k_dci_29" | "four_k_dci_30" | "four_k_dci_47" | "four_k_dci_48" | "four_k_dci_50" | "four_k_dci_59" | "four_k_dci_60" | "four_k_dci_95" | "four_k_dci_96" | "four_k_dci_10" | "four_k_dci_11" | "four_k_dci_12" | "eight_k_23" | "eight_k_24" | "eight_k_25" | "eight_k_29" | "eight_k_30" | "eight_k_47" | "eight_k_48" | "eight_k_50" | "eight_k_59" | "eight_k_60" | "eight_k_dci_23" | "eight_k_dci_24" | "eight_k_dci_25" | "eight_k_dci_29" | "eight_k_dci_30" | "eight_k_dci_47" | "eight_k_dci_48" | "eight_k_dci_50" | "eight_k_dci_59" | "eight_k_dci_60" | "pc_vga6" | "pc_svg6" | "pc_wxg5" | "pc_wxg6" | "pc_sxg5" | "pc_sxg6" | "pc_uxg5" | "pc_uxg6" | "pc_wux5" | "pc_wux6" | "pc_1945" | "pc_1946" | "pc_wqh5" | "pc_wqh6" | "pc_wqx5" | "pc_wqx6" | "special_iunk"; /** @public */ export interface DeckLinkDisplayMode { id: DeckLinkDisplayModeId; name: string; width: number; height: number; frameRate: FrameRate; } /** @public */ export interface MA35DDeviceInfo { productName: string; serialNumber: string; } /** @public */ export interface MA35DVersionInfo { pcieCrtlPatchVersion: string; pcieFwVersion: string; pciePhyPatchAVersion: string; scVersion: string; zspVersion: string; eSecureVersion: string; } /** @public */ export interface MA35DCard { index: number; device: string; busId: string; deviceInfo: MA35DDeviceInfo; versionInfo: MA35DVersionInfo; } /** @public */ export interface VancType2AncillaryId { did: number; sdid: number; } /** @public */ export type VancPayloadFormat = "other" | "afd_bar" | "pan_scan" | "scte104" | "dvb_scte_vbi" | "op47_sdp" | "op47_vanc_multipacket" | "ancillary_time_code" | "eia_708" | "eia_608"; //# sourceMappingURL=types.d.ts.map