uvg266/src/global.h

78 lines
1.9 KiB
C
Raw Normal View History

/**
* HEVC Encoder
* - Marko Viitanen ( fador at iki.fi ), Tampere University of Technology, Department of Pervasive Computing.
*/
/*! \file global.h
\brief Contains global includes
\author Marko Viitanen
2013-08-02 13:35:30 +00:00
\date 2013-06
This file should be included in every C-file.
*/
#ifndef __GLOBAL_H
#define __GLOBAL_H
/* CONFIG VARIABLES */
2013-08-02 13:35:30 +00:00
#define LCU_WIDTH 64 /*!< Largest Coding Unit (DO NOT TOUCH!) */
2013-08-02 13:35:30 +00:00
#define MAX_SEARCH_DEPTH 3 /*!< Max search depth -> min block size (3 == 8x8) */
#define MIN_SEARCH_DEPTH 1 /*!< Min search depth -> max block size (0 == 64x64) */
#define MAX_DEPTH 3 /*!< smallest CU is LCU_WIDTH>>MAX_DEPTH */
#define MIN_SIZE 3 /*!< log2_min_coding_block_size */
#define ENABLE_PCM 0 /*!< Setting to 1 will enable using PCM blocks (current intra-search does not consider PCM) */
2013-08-02 13:35:30 +00:00
#define ENABLE_SIGN_HIDING 0 /*!< DOES NOT WORK PROPERLY */
#define ENABLE_SCALING_LIST 1 /*!< Enable usage of (default) scaling list (BREAKS CHROMA WHEN 0!) */
/* END OF CONFIG VARIABLES */
2013-08-02 13:35:30 +00:00
#define AMVP_MAX_NUM_CANDS 2
#define AMVP_MAX_NUM_CANDS_MEM 3
#define MRG_MAX_NUM_CANDS 5
//Including stdint.h,
#ifdef _MSC_VER
#include "../include/stdint.h"
#else
#include <stdint.h>
#endif
/* Some tools */
#define MAX(a,b) (((a)>(b))?(a):(b))
#define MIN(a,b) (((a)<(b))?(a):(b))
#define CLIP(low,high,value) MAX((low),MIN((high),(value)))
#define SWAP(a,b,swaptype) { swaptype tempval; tempval = a; a = b; b = tempval; }
2012-06-04 10:47:12 +00:00
#define VERSION_STRING "0.2 "
#define VERSION 0.2
//#define VERBOSE 1
#define SIZE_2Nx2N 0
#define SIZE_2NxN 1
#define SIZE_Nx2N 2
#define SIZE_NxN 3
#define SIZE_NONE 15
/*
#define MODE_SKIP 0
#define MODE_INTER 1
#define MODE_INTRA 2
#define MODE_NONE 15
*/
/* Inlining functions */
#ifdef _MSC_VER /* Visual studio */
#define INLINE __forceinline
#pragma inline_recursion(on)
#else /* others */
#define INLINE inline
#endif
#define free_pointer(pointer) { free(pointer); pointer = NULL; }
#endif