71 lines
3.0 KiB
C
71 lines
3.0 KiB
C
/*------------------------------------------------------------------------------
|
|
-- --
|
|
-- This software is confidential and proprietary and may be used --
|
|
-- only as expressly authorized by a licensing agreement from --
|
|
-- --
|
|
-- Hantro Products Oy. --
|
|
-- --
|
|
-- (C) COPYRIGHT 2006 HANTRO PRODUCTS OY --
|
|
-- ALL RIGHTS RESERVED --
|
|
-- --
|
|
-- The entire notice above must be reproduced --
|
|
-- on all copies and should not be removed. --
|
|
-- --
|
|
--------------------------------------------------------------------------------
|
|
--
|
|
-- Abstract : Decode slice data, i.e. macroblocks of a slice, from the stream
|
|
--
|
|
--------------------------------------------------------------------------------
|
|
--
|
|
-- Version control information, please leave untouched.
|
|
--
|
|
-- $RCSfile: h264hwd_slice_data.h,v $
|
|
-- $Date: 2008/03/13 12:48:06 $
|
|
-- $Revision: 1.1 $
|
|
--
|
|
------------------------------------------------------------------------------*/
|
|
|
|
/*------------------------------------------------------------------------------
|
|
|
|
Table of contents
|
|
|
|
1. Include headers
|
|
2. Module defines
|
|
3. Data types
|
|
4. Function prototypes
|
|
|
|
------------------------------------------------------------------------------*/
|
|
|
|
#ifndef H264HWD_SLICE_DATA_H
|
|
#define H264HWD_SLICE_DATA_H
|
|
|
|
/*------------------------------------------------------------------------------
|
|
1. Include headers
|
|
------------------------------------------------------------------------------*/
|
|
|
|
#include "h264hwd_container.h"
|
|
#include "basetype.h"
|
|
#include "h264hwd_stream.h"
|
|
#include "h264hwd_cfg.h"
|
|
#include "h264hwd_slice_header.h"
|
|
#include "h264hwd_storage.h"
|
|
|
|
/*------------------------------------------------------------------------------
|
|
2. Module defines
|
|
------------------------------------------------------------------------------*/
|
|
|
|
/*------------------------------------------------------------------------------
|
|
3. Data types
|
|
------------------------------------------------------------------------------*/
|
|
|
|
/*------------------------------------------------------------------------------
|
|
4. Function prototypes
|
|
------------------------------------------------------------------------------*/
|
|
|
|
u32 h264bsdDecodeSliceData( decContainer_t * pDecCont, strmData_t *pStrmData,
|
|
sliceHeader_t *pSliceHeader);
|
|
|
|
void h264bsdMarkSliceCorrupted(storage_t *pStorage, u32 firstMbInSlice);
|
|
|
|
#endif /* #ifdef H264HWD_SLICE_DATA_H */
|