package.xdc

来自「6446 davinci 达芬奇平台上的一个例程」· XDC 代码 · 共 43 行

XDC
43
字号
/* *  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. * */requires ti.sdo.ce.audio;/*! *  ======== audcp ======== *  Simple Codec Engine compatible audio "encoder" * *  This codec illustrates the simplest integration into the Codec *  Engine.  Only three files are required to integrate into the codec engine: *  @p(dlist) *      - `package.xdc` *          this file is required to declare a name for the package and to *          list all codecs available *      - `AUDCP.xdc` *          this file specifies a codec (named AUDCP) that is provided by *          this package *      - `AUDCP.xs` *          this file implements the functions required by the ICodec *          interface; these functions enable the codec to describe its *          non-functional requirements such as stack size. * *  All other files in this package are simply the implementation of the codec *  as specified by xDAIS.  Thus, integration into the Codec Engine requires *  no change to the codecs sources. */// must match directory namepackage audcp_codec {    module AUDCP;}/* *  @(#) codec_engine_1_02 1,0,0,147 7-14-2006 ce-d14*/

⌨️ 快捷键说明

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