This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

DM365 DVSDK Issues.

I hope this is ok, but I thought I'd start a thread where people can post issues they've found and solved with the DM365 SDK.

Using DVSDK 2.10.0.13

Issue: The decode application failed to play my H.264 file with an error saying that CMEM "failed to get a pool fitting a size 1548288"

Solution: In video.c the DISPLAY_PIPE_SIZE is defined as 16.  However the loadmodules_sd.sh script creates 8 buffers of size 1548288.  The vido thread tries to create 16 of this size buffer for the display pipe and fails. 

I changed the define to 8 and then was able to play my file.  I tried changing the loadmodules_sd script to create 16 but then CMEM failed to load.  There is a long string of buffers created and a region of memory specified.  I don't know enough about the memory map at this time to monkey with this.  If anyone has any sage advice wrt specifying values for loading CMEM it would be appreciated.