OMX 提供了一个具有以下定义的结构
/* Parameter specifying the content URI to use. */
typedef struct OMX_PARAM_CONTENTURITYPE
{
OMX_U32 nSize;
/**< size of the structure in bytes */
OMX_VERSIONTYPE nVersion; /**< OMX specification version information */
OMX_U8 contentURI[1]; /**< The URI name*/
}OMX_PARAM_CONTENTURITYPE;
OMX_IndexParamContentURI,
/**< The URI that identifies the target content. Data type is OMX_PARAM_CONTENTURITYPE. */
我有一个常量 char 数组要设置。
char* filename = "/test.bmp";
据我了解,我需要以某种方式将 memcopy 文件名设置为 struct.contentURI ,然后相应地更新 struct.size 。我该怎么做?
最好的祝福