⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 viddec1_copy.c

📁 TI Algorithm Soft Kit 5.10 仅包括实例及其原代码
💻 C
字号:
/*  *  Copyright 2006 *  Texas Instruments Incorporated * *  All rights reserved.  Property of Texas Instruments Incorporated *  Restricted rights to use, duplicate or disclose this code are *  granted through contract. *  *//* *  ======== viddec1_copy.c ======== *  Image decoder "copy" algorithm. * *  This file contains an implementation of the IALG interface *  required by xDAIS. */#include <xdc/std.h>#include <string.h>#include <ti/xdais/dm/ividdec1.h>#include "viddec1_copy_ti.h"#include "viddec1_copy_ti_priv.h"/* buffer definitions */#define MININBUFS       1#define MINOUTBUFS      1#define MININBUFSIZE    1#define MINOUTBUFSIZE   1extern IALG_Fxns VIDDEC1COPY_TI_IALG;#define IALGFXNS  \    &VIDDEC1COPY_TI_IALG,/* module ID */                         \    NULL,               /* activate */                          \    VIDDEC1COPY_TI_alloc,/* alloc */                             \    NULL,               /* control (NULL => no control ops) */  \    NULL,               /* deactivate */                        \    VIDDEC1COPY_TI_free, /* free */                              \    VIDDEC1COPY_TI_initObj, /* init */                              \    NULL,               /* moved */                             \    NULL                /* numAlloc (NULL => IALG_MAXMEMRECS) *//* *  ======== VIDDEC1COPY_TI_IVIDDEC ======== *  This structure defines TI's implementation of the IVIDDEC1 interface *  for the VIDDEC1COPY_TI module. */IVIDDEC1_Fxns VIDDEC1COPY_TI_VIDDECCOPY = {    /* module_vendor_interface */    {IALGFXNS},    VIDDEC1COPY_TI_process,    VIDDEC1COPY_TI_control,};/* *  ======== VIDDEC1COPY_TI_IALG ======== *  This structure defines TI's implementation of the IALG interface *  for the VIDDEC1COPY_TI module. */#ifdef _TI_asm("_VIDDEC1COPY_TI_IALG .set _VIDDEC1COPY_TI_VIDDECCOPY");#else/* *  We duplicate the structure here to allow this code to be compiled and *  run non-DSP platforms at the expense of unnecessary data space *  consumed by the definition below. */IALG_Fxns VIDDEC1COPY_TI_IALG = {      /* module_vendor_interface */    IALGFXNS};#endif/* *  ======== VIDDEC1COPY_TI_alloc ======== */Int VIDDEC1COPY_TI_alloc(const IALG_Params *algParams,    IALG_Fxns **pf, IALG_MemRec memTab[]){    /* Request memory for my object */    memTab[0].size = sizeof(VIDDEC1COPY_TI_Obj);    memTab[0].alignment = 0;    memTab[0].space = IALG_EXTERNAL;    memTab[0].attrs = IALG_PERSIST;    return (1);}/* *  ======== VIDDEC1COPY_TI_free ======== */Int VIDDEC1COPY_TI_free(IALG_Handle handle, IALG_MemRec memTab[]){    VIDDEC1COPY_TI_alloc(NULL, NULL, memTab);    return (1);}/* *  ======== VIDDEC1COPY_TI_initObj ======== */Int VIDDEC1COPY_TI_initObj(IALG_Handle handle,    const IALG_MemRec memTab[], IALG_Handle p,    const IALG_Params *algParams){    return (IALG_EOK);}/* *  ======== VIDDEC1COPY_TI_process ======== */XDAS_Int32 VIDDEC1COPY_TI_process(IVIDDEC1_Handle h, XDM_BufDesc *inBufs,    XDM_BufDesc *outBufs, IVIDDEC1_InArgs *inArgs, IVIDDEC1_OutArgs *outArgs){    XDAS_Int32 minSamples;    /* validate arguments - this codec only supports "base" xDM. */    if ((inArgs->size != sizeof(*inArgs)) ||        (outArgs->size != sizeof(*outArgs))) {        return (IVIDDEC1_EUNSUPPORTED);    }    /* outArgs->bytesConsumed reports the total number of bytes consumed */    outArgs->bytesConsumed = 0;    /*     * This copy codec only "decodes" a single input buffer into a     * single output buffer.  Also, given a different size of an input     * and output buffers, only decode (i.e., copy) the lesser of the     * sizes.     */    if (inBufs->numBufs >= 1 && outBufs->numBufs >= 1) {        /* there's an available in and out buffer, how many samples? */        minSamples = inBufs->bufSizes[0] < outBufs->bufSizes[0] ?            inBufs->bufSizes[0] : outBufs->bufSizes[0];        /* process the data: read input, produce output */        memcpy(outBufs->bufs[0], inBufs->bufs[0], minSamples);        outArgs->bytesConsumed = minSamples;    }    /* Fill out the rest of the outArgs struct */    outArgs->extendedError = 0;    outArgs->decodedFrameType = 0;     /* TODO */    outArgs->outputID = inArgs->inputID;    outArgs->displayBufs.numBufs = 0;  /* important: indicate no displayBufs */    outArgs->outBufRetainedFlag = XDAS_FALSE;  /* app owns buffer */    outArgs->displayBufsStatus = IVIDEO_FRAME_NOERROR;    outArgs->topFieldFirstFlag = XDAS_FALSE;   /* TODO */    outArgs->repeatFirstFieldFlag = XDAS_FALSE;     /* TODO */    outArgs->displayContentType = 0;  /* TODO */    return (IVIDDEC1_EOK);}/* *  ======== VIDDEC1COPY_TI_control ======== */XDAS_Int32 VIDDEC1COPY_TI_control(IVIDDEC1_Handle handle, IVIDDEC1_Cmd id,    IVIDDEC1_DynamicParams *params, IVIDDEC1_Status *status){    XDAS_Int32 retVal;    /* validate arguments - this codec only supports "base" xDM. */    if ((params->size != sizeof(*params)) ||        (status->size != sizeof(*status))) {        return (IVIDDEC1_EUNSUPPORTED);    }    switch (id) {        case XDM_GETSTATUS:        case XDM_GETBUFINFO:            status->extendedError = 0;            status->outputHeight = 0;  /* TODO */            status->outputWidth = 0;  /* TODO */            status->frameRate = 0;  /* TODO */            status->bitRate = 0;  /* TODO */            status->contentType = 0;  /* TODO */            status->outputChromaFormat = 0;  /* TODO */            status->bufInfo.minNumInBufs = MININBUFS;            status->bufInfo.minNumOutBufs = MINOUTBUFS;            status->bufInfo.minInBufSize[0] = MININBUFSIZE;            status->bufInfo.minOutBufSize[0] = MINOUTBUFSIZE;            retVal = IVIDDEC1_EOK;            break;        case XDM_RESET:        case XDM_FLUSH:            retVal = IVIDDEC1_EOK;            break;        default:            /* unsupported cmd */            retVal = IVIDDEC1_EFAIL;            break;    }    return (retVal);}/* *  @(#) ti.xdais.dm.examples.viddec1_copy; 1,0,0,7; 10-18-2006 19:12:25; /db/wtree/library/trees/dais-g07x/src/ */

⌨️ 快捷键说明

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