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.

Reduce the number of CMEM buffer when using dm365 h264 decoder.

Hi,

 

I'm using dm365 with dvsdk4.02 _ dvsdkdemo/decode examples.

When I create H264 decoder,  H264 frame passes to resizeBufTab() and resizerBufTab calls Vdec2_getMinOutBufs() that returns system buffer (17 buffers) + user requsted buffer.

for examples,  if user request 3 buffers, Vdec2_getMinOutBufs() adds 17 buffers so total requests buffer is 20.

there's two problems that i have.

H264 stream requests 17 buffers with 720p image. that is, the size of 720p buffer  is 1.3Mbyte and it request 17 times, so we need more memory  for cmem buffer.

But to extend CMEM size i have to reduce the linux kenel memory. I want to avoid this situations.

The other thing is display thread couldn't bring the data until fill more than 17 buffers. it occurs more than 17 frame latency.

Is it possible to reduce the number of buffer that calls from Vdec2_getMinOutBufs() ?

 

Thanks in advance,

jay.

  • Hi,
    What is H264 profile of the stream given to decoder? For BP it won't really required 17buffers..
    So, you can ignore "Vdec2_getMinOutBufs()" value and use only application value which 3 in your case.

    Thanks,
    JPR