We are using "ti-dvsdk_dm365-evm_4_00_00_22" , and decode H264 .
I have changed as follows VIDDEC2_process(). Because in order to use asynchronous processing .
Then, "Segmentation fault" occurred at VIDDEC2_processAsync() of 1st frame .
I needed to have something else?
--- \ti-dvsdk_dm365-evm_4_00_00_22\dmai_2_20_00_10\packages\ti\sdo\dmai\ce\Vdec2.c : Vdec2_process() ---
//status = VIDDEC2_process(hVd->hDecode, &inBufDesc, &outBufDesc, &inArgs, &outArgs);
status = VIDDEC2_processAsync(hVd->hDecode, &inBufDesc, &outBufDesc, &inArgs,&outArgs);
//......test code is here.
status_wait = VIDDEC2_processWait(hVd->hDecode, &inBufDesc, &outBufDesc, &inArgs, &outArgs ,0);
------------------
Thank you .