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* filename = "/test.bmp";
私が理解している限り、memcopy ファイル名を struct.contentURI に設定し、それに応じて struct.size を更新する必要があります。どうすればいいですか?
よろしくお願いします