Use bool_t instead of BOOL_T

One bool typedef is already more than enough, two is too many.
This commit is contained in:
Martin Storsjö
2014-01-24 14:07:44 +02:00
parent 0f7a958ce3
commit 17d7b5d72e
24 changed files with 82 additions and 83 deletions

View File

@@ -252,8 +252,8 @@ int32_t DeblockingAvailableNoInterlayer (PDqLayer pCurDqLayer, int32_t iFilterId
int32_t iMbY = pCurDqLayer->iMbY;
int32_t iMbX = pCurDqLayer->iMbX;
int32_t iMbXy = pCurDqLayer->iMbXyIndex;
BOOL_T bLeftFlag = FALSE;
BOOL_T bTopFlag = FALSE;
bool_t bLeftFlag = FALSE;
bool_t bTopFlag = FALSE;
if (2 == iFilterIdc) {
bLeftFlag = (iMbX > 0) && (pCurDqLayer->pSliceIdc[iMbXy] == pCurDqLayer->pSliceIdc[iMbXy - 1]);