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.