1.1.3.6.3 DRV_GENERICCODEC_MicMuteOff Function

void DRV_GENERICCODEC_MicMuteOff(DRV_HANDLE handle)

Summary

Umutes th Generic Codec's microphone input.

Description

This function unmutes the Generic Codec's microphone input.

Preconditions

The DRV_GENERICCODEC_Initialize routine must have been called for the specified Generic Codec driver instance.

DRV_GENERICCODEC_Open must have been called to obtain a valid opened device handle.

Parameters

ParametersDescription
handleA valid open-instance handle, returned from the driver's open routine

Returns

None.

Remarks

None.

Example

_// myAppObj is an application specific object._

MY_APP_OBJ myAppObj;

_// myGENERICCODECHandle is the handle returned // by the DRV_GENERICCODEC_Open function._

DRV_GENERICCODEC_MicMuteOff(myGENERICCODECHandle); _//Generic Codec microphone unmuted_

C

void DRV_GENERICCODEC_MicMuteOff(DRV_HANDLE handle);