aclvdecDestroyChannel
函数功能
销毁视频解码处理的通道,只能销毁通过aclvdecCreateChannel接口创建的通道,同步接口。
约束说明
- 销毁通道接口会等待已发送帧解码完成且用户的回调函数处理完成后再销毁通道。
- aclvdecDestroyChannel接口内部封装了aclrtUnSubscribeReport接口取消线程注册(Stream上的回调函数不再由指定线程处理)、aclrtDestroyStream接口销毁Stream。用户在实现VDEC功能时,无需再单独调用aclrtUnSubscribeReport接口、aclrtDestroyStream接口。
- 如果在调用aclvdecDestroyChannel接口销毁通道前,已调用aclvdecDestroyChannelDesc接口销毁了通道描述信息,那么在调用aclvdecDestroyChannel接口销毁通道时会报错。
函数原型
aclError aclvdecDestroyChannel (aclvdecChannelDesc *channelDesc)
参数说明
参数名 |
输入/输出 |
说明 |
---|---|---|
channelDesc |
输入 |
通道描述信息的指针。 与调用aclvdecCreateChannel接口创建通道时指定的channelDesc保持一致。 |
返回值说明
返回0表示成功,返回其它值表示失败。
父主题: VDEC视频解码通道