onVirtualBackgroundSourceEnabled method

void onVirtualBackgroundSourceEnabled(
  1. bool enabled,
  2. int reason
)

通知虚拟背景是否成功开启的回调

调用 NERtcEngine.enableVirtualBackground 接口启用虚拟背景功能后,SDK 会触发此回调。

说明

如果自定义虚拟背景是 PNG 或 JPG 格式的图片,SDK 会在读取图片后才会触发此回调,因此可能存在一定延时。

enabled 是否已成功开启虚拟背景。

  • true:成功开启虚拟背景。
  • false:未成功开启虚拟背景。

reason 虚拟背景开启出错的原因或开启成功的提示。详细信息请参考 NERtcVirtualBackgroundSourceStateReason

Implementation

void onVirtualBackgroundSourceEnabled(bool enabled, int reason) {}