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.

Is the mpeg4enc running at the DSP side?

Execuse me!

I‘m using dvsdk_3_10_00_19 and reading the example of encodedecode,

the configuration of encodedecode.cfg as follows:

var myEngine = Engine.create("encodedecode", [
{name: "mpeg4enc", mod: MPEG4ENC, local: true, groupId: 1},
{name: "mpeg4dec", mod: MPEG4DEC, local: true, groupId: 1},
]);

The local item 'true' , does it mean the "mpeg4enc" algorithm runs at the ARM side,

If I only change it like this:

var myEngine = Engine.create("encodedecode", [
{name: "mpeg4enc", mod: MPEG4ENC, local: false, groupId: 1},
{name: "mpeg4dec", mod: MPEG4DEC, local: false, groupId: 1},
]);

Can it run at the DSP side? How can I make it run at the DSP side?

My device is DM355.