ceapp.cfg

来自「Introduce how to Change the DVEVM6446 Me」· CFG 代码 · 共 42 行

CFG
42
字号
/* *  Copyright 2006 by Texas Instruments Incorporated. * *  All rights reserved. Property of Texas Instruments Incorporated. *  Restricted rights to use, duplicate or disclose this code are *  granted through contract. * *//* *  ======== ceapp.cfg ======== *//* use the tracing utility module */var TraceUtil = xdc.useModule('ti.sdo.ce.utils.trace.TraceUtil');//TraceUtil.attrs = TraceUtil.SOCRATES_TRACING;/* set up OSAL */var osalGlobal = xdc.useModule('ti.sdo.ce.osal.Global');osalGlobal.runtimeEnv = osalGlobal.DSPLINK_LINUX;/* get various codec modules; i.e., implementation of codecs */var VIDDEC_COPY = xdc.useModule('codecs.viddec_copy.VIDDEC_COPY');var VIDENC_COPY = xdc.useModule('codecs.videnc_copy.VIDENC_COPY');/* *  ======== Engine Configuration ======== */var Engine = xdc.useModule('ti.sdo.ce.Engine');var myEngine = Engine.create("video_copy", [    {name: "videnc_copy", mod: VIDENC_COPY, local: false},    {name: "viddec_copy", mod: VIDDEC_COPY, local: false}]);myEngine.server = "./video_copy.x64P";Program.main = Program.system = null;/* *  @(#) codec_engine_1_02 1,0,0,147 7-14-2006 ce-d14*/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?