📄 encodedecode.cfg
字号:
/* ============================================================================
* Copyright (c) Texas Instruments Incorporated 2005
*
* Use of this software is controlled by the terms and conditions found in the
* license agreement under which this software has been supplied or provided.
* ============================================================================
*/
var linkGppPkg = xdc.loadPackage( "dsplink.gpp" );
linkGppPkg.Global.runtimeOS = linkGppPkg.Global.LINUX;
var osalGlobal = xdc.useModule( 'ti.sdo.ce.osal.Global' );
osalGlobal.runtimeEnv = osalGlobal.DSPLINK_LINUX;
var H264ENC = xdc.useModule('ti.sdo.codecs.h264enc.ce.H264ENC');
var H264DEC = xdc.useModule('ti.sdo.codecs.h264dec.ce.H264DEC');
/*
* ======== Engine Configuration ========
*/
var Engine = xdc.useModule('ti.sdo.ce.Engine');
var vcr = Engine.create("loopback", [
{name: "h264enc", mod: H264ENC, local: false},
{name: "h264dec", mod: H264DEC, local: false},
]);
vcr.server = "./loopbackCombo.x64P";
Program.main = Program.system = null;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -