Part Number: TDA4VM
Hi Ti's Experts,
We found that com.ti.hwa.video_encoder does not support pipeline when the pipeline buffer depth is greater than 1.
Assume the input image frame rate is 30, if the input pipeline buffer depth of com.ti.hwa.video_encoder set to 2, the actual encoding frame rate is only 15;if set 3, encoding frame rate is only 10.
Therefore, for the official demo: ti-processor-sdk-rtos-j721e-evm-07_03_00_07/vision_apps/apps/dl_demos/app_tidl_avp4,
tivxSetNodeParameterNumBufByIndex(obj->imgMosaicObj.node, 1, APP_BUFFER_Q_DEPTH);
The following modifications may be required
tivxSetNodeParameterNumBufByIndex(obj->imgMosaicObj.node, 1, 1);
I tried to find out the cause of the problem,and Found that com.ti.hwa.video_encoder bind the buffer first occurrence when call the tivxVideoEncoderProcess(),

Firstly Process,


Thanks a lot, Look for your reply!