达芬奇平台上面的codec server 搭建和音频处理的搭建

源代码在线查看: package.bld

软件大小: 3466 K
上传用户: Numb_pqc
关键词: server codec 达芬奇 音频处理
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*
				 *  ======== package.bld ========
				 *
				 */
				
				/* all releases get the docs */
				Pkg.otherFiles = [
				    "docs",
				    "link.xdt",
				    "package.bld",
				    ];
				
				
				/*
				 * Add a "production" release of the name of the package, but with
				 * underscores replacing dots, and ending with ",production".  This release will
				 * only have the actual codecs.
				 */
				if(arguments[0] == "prod")
				{  
				productionRelease = Pkg.addRelease(Pkg.name.replace(/\./g, '_') + ",production");
				productionRelease.attrs.label = "production";
				productionRelease.otherFiles = ["lib/dmjpge_tigem.l64P"];
				Pkg.defaultRelease = productionRelease;
				}
				
				/*
				 * Add a "evaluation" release of the name of the package, but with
				 * underscores replacing dots, and ending with ",evaluation".  This release will
				 * only have the watermarked codecs.
				 */
				if(arguments[0] == "eval")
				{ 
				
				evaluationRelease = Pkg.addRelease(Pkg.name.replace(/\./g, '_') + ",evaluation");
				evaluationRelease.attrs.label = "evaluation";
				evaluationRelease.otherFiles = ["lib/watermark"];
				Pkg.defaultRelease = evaluationRelease;
				}
				
							

相关资源