/* * encodedecode.cfg * * This configuration file configures the DVSDK encodedecode demos for * DM365 platform * * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ * * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the * distribution. * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * */ /* Load support for the Codec Engine OSAL */ var osalGlobal = xdc.useModule('ti.sdo.ce.osal.Global'); /* Configure CE to use it's DSP Link Linux version */ osalGlobal.runtimeEnv = osalGlobal.LINUX; /* * ======== Engine Configuration ======== */ var H264ENC = xdc.useModule('ti.sdo.codecs.h264enc.ce.H264ENC'); var H264DEC = xdc.useModule('ti.sdo.codecs.h264dec.ce.H264DEC'); var JPEGENC = xdc.useModule('ti.sdo.codecs.jpegenc.ce.JPEGENC'); var JPEGDEC = xdc.useModule('ti.sdo.codecs.jpegdec.ce.JPEGDEC'); var IPRUN = xdc.useModule('ti.sdo.codecs.iprun.ce.IPRUN'); var DEI = xdc.useModule('ti.sdo.codecs.dei.ce.DEI'); var Engine = xdc.useModule('ti.sdo.ce.Engine'); var myEngine = Engine.create("encodedecode", [ {name: "h264enc", mod: H264ENC, local: true, groupId: 1}, {name: "h264dec", mod: H264DEC, local: true, groupId: 1}, {name: "jpegenc", mod: JPEGENC, local: true, groupId: 1}, {name: "jpegdec", mod: JPEGDEC, local: true, groupId: 1}, {name: "iprun", mod: IPRUN, local: true, groupId: 2}, {name: "dei", mod: DEI, local: true, groupId: 2}, ]); /* Load support for the 'Davinci Multimedia Application Interface' modules */ var DMAI = xdc.loadPackage('ti.sdo.dmai'); /* Configure RMAN */ var RMAN = xdc.useModule('ti.sdo.fc.rman.RMAN'); RMAN.useDSKT2 = false; RMAN.persistentAllocFxn = "__ALG_allocMemory"; RMAN.persistentFreeFxn = "__ALG_freeMemory"; RMAN.semCreateFxn = "Sem_create"; RMAN.semDeleteFxn = "Sem_delete"; RMAN.semPendFxn = "Sem_pend"; RMAN.semPostFxn = "Sem_post"; RMAN.tableSize = 10; /* Configure VICPSYNC */ var VICPSYNC = xdc.useModule('ti.sdo.fc.vicpsync.VICPSYNC'); /* Configure HDVICPSYNC */ var HDVICPSYNC = xdc.useModule('ti.sdo.fc.hdvicpsync.HDVICPSYNC'); /* Configure MEMUTILS */ var MEMUTILS = xdc.useModule('ti.sdo.fc.memutils.MEMUTILS'); var EDMA3 = xdc.useModule('ti.sdo.fc.edma3.Settings'); EDMA3.globalInit = true; EDMA3.maxQdmaChannels = [10,10,10,10]; EDMA3.trace = false; EDMA3.debug = false; EDMA3.maxRequests = 256; var HDVICP = xdc.useModule('ti.sdo.fc.ires.hdvicp.HDVICP'); var VICP = xdc.useModule('ti.sdo.fc.ires.vicp.VICP2'); VICP.debug = false; var ADDRSPACE = xdc.useModule('ti.sdo.fc.ires.addrspace.ADDRSPACE'); var EDMA3CHAN = xdc.useModule('ti.sdo.fc.ires.edma3chan.EDMA3CHAN'); var EDMA = xdc.useModule('ti.sdo.linuxutils.edma.EDMA'); var CMEM = xdc.useModule('ti.sdo.linuxutils.cmem.CMEM'); var MEMTCM = xdc.useModule('ti.sdo.fc.ires.memtcm.MEMTCM'); var OSAL_SETTINGS = xdc.useModule('ti.sdo.ce.osal.linux.Settings'); OSAL_SETTINGS.maxCbListSize = 200; MEMTCM.cmemBlockId = 1; //Since we use _1 in our insmod command. /* Uncomment these lines if you wish to debug FC and enable FC trace */ /* xdc.loadPackage('ti.sdo.fc.ires.vicp').profile = "debug_trace"; xdc.loadPackage('ti.sdo.fc.ires.edma3chan').profile = "debug_trace"; xdc.loadPackage('ti.sdo.fc.rman').profile = "debug_trace"; xdc.loadPackage('ti.sdo.fc.edma3').profile = "debug_trace"; EDMA3CHAN.trace = true; EDMA3CHAN.debug = true; */