36 lines
1.6 KiB
C
36 lines
1.6 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. --
|
||
|
-- --
|
||
|
--------------------------------------------------------------------------------
|
||
|
--
|
||
|
-- Description : CABAC initialization tables.
|
||
|
--
|
||
|
------------------------------------------------------------------------------
|
||
|
--
|
||
|
-- Version control information, please leave untouched.
|
||
|
--
|
||
|
-- $RCSfile: h264hwd_cabac.h,v $
|
||
|
-- $Revision: 1.1 $
|
||
|
-- $Date: 2008/03/13 12:48:06 $
|
||
|
--
|
||
|
------------------------------------------------------------------------------*/
|
||
|
|
||
|
#ifndef __H264CABAC_H__
|
||
|
#define __H264CABAC_H__
|
||
|
|
||
|
#include "basetype.h"
|
||
|
|
||
|
extern const u32 cabacInitValues[4*460*2/4];
|
||
|
|
||
|
#endif /* __H264CABAC_H__ */
|