ACX_STREAM_BRIDGE_CONFIG_INIT-Funktion (acxstreams.h)

Die ACX_STREAM_BRIDGE_CONFIG_INIT-Funktion initialisiert eine ACX_STREAM_BRIDGE_CONFIG-Struktur .

Syntax

void ACX_STREAM_BRIDGE_CONFIG_INIT(
  PACX_STREAM_BRIDGE_CONFIG Config
);

Parameter

Config

Ein Zeiger auf die ACX_STREAM_BRIDGE_CONFIG-Struktur .

Rückgabewert

Keine

Bemerkungen

Treiber sollten beim Erstellen einer ACXSTREAMBRIDGE ACX_STREAM_BRIDGE_CONFIG_INIT aufrufen. Diese Funktion setzt die ACX_STREAM_BRIDGE_CONFIG-Struktur zurück und initialisiert das Feld Typ auf AcxStreamBridgeDefaultType.

Beispiel

    ACX_STREAM_BRIDGE_CONFIG bridgeCfg;

    ACX_STREAM_BRIDGE_CONFIG_INIT(&bridgeCfg);
    streamCfg.InModesCount = 1;
    streamCfg.InModes      = inModes; 
    streamCfg.OutMode      = &AUDIO_SIGNALPROCESSINGMODE_DEFAULT;

ACX-Anforderungen

AcX-Mindestversion: 1.0

Weitere Informationen zu ACX-Versionen finden Sie unter ACX-Versionsübersicht.

Anforderungen

Anforderung Wert
Header acxstreams.h

Weitere Informationen