mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 10:34:05 +00:00
Move comments for defines to a different line.
- Having comment as part of the define confuses doxygen. They get added to every function that uses the macro.
This commit is contained in:
parent
52b110d318
commit
2211b90a24
48
src/global.h
48
src/global.h
|
@ -58,40 +58,52 @@ typedef int16_t coeff_t;
|
||||||
|
|
||||||
//spec: references to variables defined in Rec. ITU-T H.265 (04/2013)
|
//spec: references to variables defined in Rec. ITU-T H.265 (04/2013)
|
||||||
|
|
||||||
// Limits for prediction block sizes. 0 = 64x64, 4 = 4x4.
|
//! Limits for prediction block sizes. 0 = 64x64, 4 = 4x4.
|
||||||
#define PU_DEPTH_INTER_MIN 0
|
#define PU_DEPTH_INTER_MIN 0
|
||||||
#define PU_DEPTH_INTER_MAX 3
|
#define PU_DEPTH_INTER_MAX 3
|
||||||
#define PU_DEPTH_INTRA_MIN 0
|
#define PU_DEPTH_INTRA_MIN 0
|
||||||
#define PU_DEPTH_INTRA_MAX 4
|
#define PU_DEPTH_INTRA_MAX 4
|
||||||
|
|
||||||
// Maximum number of layers in GOP structure (for allocating structures)
|
//! Maximum number of layers in GOP structure (for allocating structures)
|
||||||
#define MAX_GOP_LAYERS 6
|
#define MAX_GOP_LAYERS 6
|
||||||
|
|
||||||
// Maximum CU depth when descending form LCU level.
|
//! Maximum CU depth when descending form LCU level.
|
||||||
#define MAX_DEPTH 3 /*!< spec: log2_diff_max_min_luma_coding_block_size */
|
//! spec: log2_diff_max_min_luma_coding_block_size
|
||||||
// Minimum log2 size of CUs.
|
#define MAX_DEPTH 3
|
||||||
#define MIN_SIZE 3 /*!< spec: MinCbLog2SizeY */
|
//! Minimum log2 size of CUs.
|
||||||
// Minimum log2 size of PUs.
|
//! spec: MinCbLog2SizeY
|
||||||
#define MAX_PU_DEPTH 4 /*!< Search is started at depth 0 and goes in Z-order to MAX_PU_DEPTH, see search_cu() */
|
#define MIN_SIZE 3
|
||||||
|
//! Minimum log2 size of PUs.
|
||||||
|
//! Search is started at depth 0 and goes in Z-order to MAX_PU_DEPTH, see search_cu()
|
||||||
|
#define MAX_PU_DEPTH 4
|
||||||
|
|
||||||
// Minimum log2 transform sizes.
|
//! Minimum log2 transform sizes.
|
||||||
#define TR_DEPTH_INTER 2 /*!< spec: max_transform_hierarchy_depth_inter */
|
//! spec: max_transform_hierarchy_depth_inter
|
||||||
|
#define TR_DEPTH_INTER 2
|
||||||
|
|
||||||
#define ENABLE_PCM 0 /*!< spec: pcm_enabled_flag, Setting to 1 will enable using PCM blocks (current intra-search does not consider PCM) */
|
//! spec: pcm_enabled_flag, Setting to 1 will enable using PCM blocks (current intra-search does not consider PCM)
|
||||||
|
#define ENABLE_PCM 0
|
||||||
|
|
||||||
#define ENABLE_TEMPORAL_MVP 0 /*!< Enable usage of temporal Motion Vector Prediction */
|
//! Enable usage of temporal Motion Vector Prediction
|
||||||
|
#define ENABLE_TEMPORAL_MVP 0
|
||||||
|
|
||||||
#define OPTIMIZATION_SKIP_RESIDUAL_ON_THRESHOLD 0 /*!< skip residual coding when it's under _some_ threshold */
|
//! skip residual coding when it's under _some_ threshold
|
||||||
|
#define OPTIMIZATION_SKIP_RESIDUAL_ON_THRESHOLD 0
|
||||||
|
|
||||||
/* END OF CONFIG VARIABLES */
|
/* END OF CONFIG VARIABLES */
|
||||||
|
|
||||||
#define CU_MIN_SIZE_PIXELS (1 << MIN_SIZE) /*!< pow(2, MIN_SIZE) */
|
//! pow(2, MIN_SIZE)
|
||||||
#define LCU_WIDTH (1 << (MIN_SIZE + MAX_DEPTH)) /*!< spec: CtbSizeY */
|
#define CU_MIN_SIZE_PIXELS (1 << MIN_SIZE)
|
||||||
#define LCU_WIDTH_C (LCU_WIDTH / 2) /*!< spec: CtbWidthC and CtbHeightC */
|
//! spec: CtbSizeY
|
||||||
|
#define LCU_WIDTH (1 << (MIN_SIZE + MAX_DEPTH))
|
||||||
|
//! spec: CtbWidthC and CtbHeightC
|
||||||
|
#define LCU_WIDTH_C (LCU_WIDTH / 2)
|
||||||
|
|
||||||
#define TR_MAX_LOG2_SIZE 5 /*!< spec: Log2MaxTrafoSize <= Min(CtbLog2SizeY, 5) */
|
//! spec: Log2MaxTrafoSize <= Min(CtbLog2SizeY, 5)
|
||||||
|
#define TR_MAX_LOG2_SIZE 5
|
||||||
#define TR_MAX_WIDTH (1 << TR_MAX_LOG2_SIZE)
|
#define TR_MAX_WIDTH (1 << TR_MAX_LOG2_SIZE)
|
||||||
#define TR_MIN_LOG2_SIZE 2 /*!< spec: Log2MinTrafoSize */
|
//! spec: Log2MinTrafoSize
|
||||||
|
#define TR_MIN_LOG2_SIZE 2
|
||||||
#define TR_MIN_WIDTH (1 << TR_MIN_LOG2_SIZE)
|
#define TR_MIN_WIDTH (1 << TR_MIN_LOG2_SIZE)
|
||||||
|
|
||||||
#if LCU_WIDTH != 64
|
#if LCU_WIDTH != 64
|
||||||
|
|
Loading…
Reference in a new issue