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

📄 swdec_container.h

📁 freescale i.mx31 BSP CE5.0全部源码
💻 H
字号:
/*------------------------------------------------------------------------------
--                                                                            --
--       This software is confidential and proprietary and may be used        --
--        only as expressly authorized by a licensing agreement from          --
--                                                                            --
--                            Hantro Products Oy.                             --
--                                                                            --
--      In the event of publication, the following notice is applicable:      --
--                                                                            --
--                   (C) COPYRIGHT 2004 HANTRO PRODUCTS OY                    --
--                            ALL RIGHTS RESERVED                             --
--                                                                            --
--         The entire notice above must be reproduced on all copies.          --
--                                                                            --
--------------------------------------------------------------------------------
--
-- MODULE NAME: SwDec_Container
--
-- DESCRIPTION: Container for all data needed during decoding process
--
-------------------------------------------------------------------------------*/


/*------------------------------------------------------------------------------

    Table of contents
   
    1. Include headers
    2. Module defines
    3. Data types
    4. Function prototypes

------------------------------------------------------------------------------*/

#ifndef SWDEC_CONTAINER_H
#define SWDEC_CONTAINER_H

/*------------------------------------------------------------------------------
    1. Include headers
------------------------------------------------------------------------------*/
#include "basetype.h"
#include "SwDec_VopDesc.h"
#include "SwDec_StrmDesc.h"
#include "SwDec_MbDesc.h"
#include "SwDec_ErrorInfo.h"
#include "SwDec_Hdrs.h"
#include "SwDec_SvDesc.h"
#include "SwDec_StrmStorage.h"
#include "MP4DecApiStorage.h"
#include "video_hantro_decoder_conf.hi"

/*------------------------------------------------------------------------------
    2. Module defines
------------------------------------------------------------------------------*/

/* String length for tracing */
#define MP4DEC_TRACE_STR_LEN 100

/*------------------------------------------------------------------------------
    3. Data types
------------------------------------------------------------------------------*/

typedef struct
{
    decVopDesc_t          VopDesc;
    decStrmDesc_t         StrmDesc;
    decStrmStorage_t      StrmStorage;
    decMbDesc_t           *MbDesc;
    decErrorInfo_t        ErrInfo;
    decHdrs_t             Hdrs;
    decSvDesc_t           SvDesc;
    decApiStorage_t       ApiStorage;
    u8                    *pOut; /* pointer to output picture */
    u8                    *pRef; /* pointer to reference picture */
#ifdef MP4DEC_TRACE
    char str[MP4DEC_TRACE_STR_LEN];
#endif
} decContainer_t;

/*------------------------------------------------------------------------------
    4. Function prototypes
------------------------------------------------------------------------------*/

#endif

⌨️ 快捷键说明

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