I'm trying to run an application that uses the H264FHD encoder. I created a server with the following settings:
var H264ENC = xdc.useModule('ti.sdo.codecs.h264fhdvenc.ce.H264FHDVENC');
/* Scratch group 0 */
DSKT2.DARAM_SCRATCH_SIZES[0] = 65536;
DSKT2.SARAM_SCRATCH_SIZES[0] = 65536;
EDMA3.maxPaRams[0] = 384;
EDMA3.maxTccs[0] = 30;
EDMA3.maxEdmaChannels[0] = 30;
EDMA3.maxQdmaChannels[0] = 4;
When I call VIDENC1_create, I get the following error:
[DSP] @0,115,498tk: [+7 T:0x8ba0006c S:0x8ba03d3c] ti.sdo.ce.alg.Algorithm - Al\gorithm_create> Assignment of alg resources through RMAN FAILED (0x7)
Has anyone been able to use this codec?
Farrah