Home
last modified time | relevance | path

Searched refs:audioPathEnable (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/drivers/hdf_core/framework/support/platform/include/hdmi/
H A Dhdmi_core.h153 void (*audioPathEnable)(struct HdmiCntlr *cntlr, bool enable); member
266 if (cntlr->ops != NULL && cntlr->ops->audioPathEnable != NULL) { in HdmiCntlrAudioPathEnable()
268 cntlr->ops->audioPathEnable(cntlr, enable); in HdmiCntlrAudioPathEnable()
/ohos5.0/docs/zh-cn/device-dev/driver/
H A Ddriver-platform-hdmi-develop.md65 void (*audioPathEnable)(struct HdmiCntlr *cntlr, bool enable);
105 | audioPathEnable | **cntlr**:结构体指针,核心层HDMI控制器<br />**enable**:bool,使能/去使能| 无 | 无 | 使能/去使能audio通路 |
306 .audioPathEnable = HdmiAdapterAudioPathEnable,
/ohos5.0/docs/en/device-dev/driver/
H A Ddriver-platform-hdmi-develop.md57 void (*audioPathEnable)(struct HdmiCntlr *cntlr, bool enable);
97 |audioPathEnable|**cntlr**: structure pointer to an HDMI controller at the core layer.<br>**enable*…
291 .audioPathEnable = HdmiAdapterAudioPathEnable,
/ohos5.0/drivers/hdf_core/framework/support/platform/src/hdmi/
H A Dhdmi_core.c747 if (cntlr->ops->audioPathEnable != NULL) { in HdmiCntlrStop()
748 cntlr->ops->audioPathEnable(cntlr, false); in HdmiCntlrStop()