本文主要是介绍Android OpenMAX(四)OMX Core,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
假设我们已经写好了所有的OMX组件,有vdec、venc、adec、aenc,接下来问题来了,我们应该如何管理这些组件呢(创建、销毁)?这一篇文章我们向上一层学习OMX Core提供的标准API。
OMX Core代码位于 OMX_Core.h
OMX Core在OpenMAX IL架构中的位置位于IL Client与实际的OMX组件之间,OMX Core提供了一组用于操作和管理OMX组件的标准API给上层使用,OMX组件实现者需要实现这组API。此外OMX Core还提供了IL Client(Application)要用到的一些枚举、宏或者结构体。
1、OMX Core API
/** The OMX_Init method is used to initialize the OMX core. It shall be thefirst call made into OMX and it should only be executed one time withoutan interviening OMX_Deinit call.The core should return from this call within 20 msec.@return OMX_ERRORTYPEIf the command successfully executes, the return cod
这篇关于Android OpenMAX(四)OMX Core的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!