达芬奇平台上面的codec server 搭建和音频处理的搭建
源代码在线查看: package.xs
/*
* ======== package.xs ========
*
*/
/*
* ======== getLibs ========
*/
function getLibs(prog)
{
var lib = null;
if (prog.build.target.isa == "64P") {
if (this.JPEGDEC.watermark == true) {
lib = "lib/watermark/jpegdec_ti.l64P";
}
else {
lib = "lib/jpegdec_ti.l64P";
}
print(" will link with " + this.$name + ":" + lib);
}
return (lib);
}
/*
* ======== getSects ========
*/
function getSects()
{
var template = null;
if (Program.build.target.isa == "64P") {
template = "ti/sdo/codecs/jpegdec/link.xdt";
}
return (template);
}