Use the C++ constants true/false instead of defining our own

TRUE/FALSE has intentionally been left in use for the few
platform specific APIs that define these constants themselves
and expect them to be used, for consistency.
This commit is contained in:
Martin Storsjö
2014-02-08 23:39:27 +02:00
parent f2bd22acd5
commit 80862eec77
22 changed files with 123 additions and 136 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 bLeftFlag = FALSE;
bool bTopFlag = FALSE;
bool bLeftFlag = false;
bool bTopFlag = false;
if (2 == iFilterIdc) {
bLeftFlag = (iMbX > 0) && (pCurDqLayer->pSliceIdc[iMbXy] == pCurDqLayer->pSliceIdc[iMbXy - 1]);