📄 encsim.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. --
-- --
--------------------------------------------------------------------------------
--
-- Description : Encoder internal
--
-------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
Table of context
1. Include headers
2. External compiler flags
3. Module defines
4. Function prototypes
------------------------------------------------------------------------------*/
#ifndef __ENC_SIM_H__
#define __ENC_SIM_H__
/*------------------------------------------------------------------------------
1. Include headers
------------------------------------------------------------------------------*/
#include "basetype.h"
//#ifndef NDEBUG
#include <stdlib.h>
#include <assert.h>
#include <stdio.h>
//#endif
/*------------------------------------------------------------------------------
2. External compiler flags
------------------------------------------------------------------------------*/
/* STREAM TRACE, DO NOT CHANGE */
#ifndef TRACE_STREAM
#define COMMENT(x)
#else
#define COMMENT(x) EncComment(x)
#endif
/* ASSERT, DO NOT CHANGE */
#ifndef NDEBUG
//#define ASSERT(x) assert(x)
#else
#define ASSERT(x)
#endif
/*------------------------------------------------------------------------------
3. Module defines
------------------------------------------------------------------------------*/
typedef enum
{
NOK = -1,
OK = 0
}
bool_e;
typedef enum
{
NO = 0,
YES = 1
}
true_e;
/* VLC TABLE */
typedef struct
{
i32 value; /* Value of bits */
i32 number; /* Number of bits */
}
table_s;
/* General tools */
#define ABS(x) ((x) < (0) ? -(x) : (x))
#define MAX(a, b) ((a) > (b) ? (a) : (b))
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define SIGN(a) ((a) < (0) ? (-1) : (1))
/*------------------------------------------------------------------------------
4. Function prototypes
------------------------------------------------------------------------------*/
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -