I have modified the example video_copy server from codec_engine_2_23_01 to include a modified example codec: viddec1_copy. I've compiled the codec and have integrated it into the server and have used this server in my ARM application.
Now, I have downloaded the TI JPEG Encode Codec and I would like to integrate this codec in the same server I have already set up. I've tried to put the /packages/ti/sdo/codecs/jpegenc folder within the codec_engine_2_23_01/examples/ti/sdo/ce/examples/codecs folder and then modify my server's .cfg file to reference this as follows:
var JPEG_ENC = xdc.useModule('ti.sdo.ce.examples.codecs.jpegenc.ce.JPEGENC');
I have also added the name and mod to the Server.algs structure within the same .cfg file.
When I try to re-make the DSP server, I get the following error:
PACKAGE_NOT_FOUND: /home/user/dvsdk_2_00_00_22/codec_engine_2_23_01/examples/ti/sdo/ce/examples/codecs/jpegenc/ce/package.xdc found along the package path, but no schema file was found. Ensure that the package 'ti.sdo.ce.examples.codecs.jpegenc.ce' is completely built.
Bottom line is, I am extremely confused on how to use the TI JPEG codec within the modified server I've already established. I am working within Linux and the target is a DM6441 device. Any help with this is extremely appreciated.