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.

DVSDK 3.10 Rebuilding Codec Server for AAC Encoding/Decoding for use in Gstreamer

Hi all,

I'm trying to integrate the aac encoder/decoder codec into the dvsdk 3.10 for the dm6467t. The 3.10 release does come with both of these codecs but it seems they are unsupported in gstreamer and the only way to access them is to rebuild the codec server seperatly.

I am slightly confused with the method of this as I built the dvsdks, before on a ubuntu machine. It looks like to rebuild the downloadable codecs into a codec server you require a machine running CCS 4 which I have this on a windows machine. After looking thorugh the install guide and make files it seems to point towards that you require to have a cross compiler / linux git directory and others on the windows machine.

It would be great if someone could point me in the right direction to acheive this.

Many Thanks

Kind Regards

James

  • Has anyone got any ideas?

  • I recompile my codecServer without using Code Composer Studio. I'm using Bitbake to compile all my packages.

    To add a codec to the codec server look at this :

    http://processors.wiki.ti.com/index.php/Codec_Combos_Evaluation#How_do_I_add_a_codec_to_the_Codec_Server_Package.3F

    You have to edit codec.cfg (in the server folder in dvsdk), put your accencoder folder in the codecs folder and use the right path :

    var JPEGENC = xdc.useModule('ti.sdo.codecs.jpegenc.ce.JPEGENC');

    var ACCENC = xdc.useModule('si.sdo.codecs.accenc.ce.ACCENC');

    Hope it will help you.