avcenc: Move SKIP_BIAS macro definition to enc from me

Skip bias is encoder specific. It is better if it is defined in
encoder headers as opposed to me headers

Test: CL refactoring

Change-Id: I19afb9fcb4fb966c890ed41ab3fe0984e552f57f
This commit is contained in:
Ram Mohan 2017-11-23 17:41:50 +05:30 committed by David James
parent 62e0d0c9e2
commit 11b4a7b4f0
2 changed files with 19 additions and 14 deletions

View file

@ -37,6 +37,25 @@
#ifndef IH264E_ME_H_
#define IH264E_ME_H_
/*****************************************************************************/
/* Constant Macros */
/*****************************************************************************/
/**
******************************************************************************
* @brief Skip Bias value for P slice
******************************************************************************
*/
#define SKIP_BIAS_P 2
/**
******************************************************************************
* @brief Skip Bias value for B slice
******************************************************************************
*/
#define SKIP_BIAS_B 16
/*****************************************************************************/
/* Function Macros */
/*****************************************************************************/

View file

@ -47,20 +47,6 @@
*/
#define NUM_LAYERS 16
/**
******************************************************************************
* @brief Skip Bias value for P slice
******************************************************************************
*/
#define SKIP_BIAS_P 2
/**
******************************************************************************
* @brief Skip Bias value for B slice
******************************************************************************
*/
#define SKIP_BIAS_B 16
/*****************************************************************************/
/* Extern Function Declarations */
/*****************************************************************************/