Condividi tramite


funzione ACX_STREAM_BRIDGE_CONFIG_INIT (acxstreams.h)

La funzione ACX_STREAM_BRIDGE_CONFIG_INIT inizializza una struttura ACX_STREAM_BRIDGE_CONFIG.

Sintassi

void ACX_STREAM_BRIDGE_CONFIG_INIT(
  PACX_STREAM_BRIDGE_CONFIG Config
);

Parametri

Config

Puntatore alla struttura ACX_STREAM_BRIDGE_CONFIG.

Valore restituito

Nessuno

Osservazioni

I driver devono chiamare ACX_STREAM_BRIDGE_CONFIG_INIT durante la creazione di un ACXSTREAMBRIDGE. Questa funzione reimposta la struttura ACX_STREAM_BRIDGE_CONFIG e inizializza il campo Type su AcxStreamBridgeDefaultType.

Esempio

    ACX_STREAM_BRIDGE_CONFIG bridgeCfg;

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

Requisiti ACX

versione minima di ACX: 1.0

Per altre informazioni sulle versioni di ACX, vedere panoramica della versione ACX.

Fabbisogno

Requisito Valore
intestazione acxstreams.h

Vedere anche