Lines Matching refs:pPce1
286 int CProgramConfig_Compare ( const CProgramConfig * const pPce1, in CProgramConfig_Compare() argument
291 if (FDKmemcmp(pPce1, pPce2, sizeof(CProgramConfig)) != 0) in CProgramConfig_Compare()
296 if (pPce1->NumChannels == pPce2->NumChannels) in CProgramConfig_Compare()
302 if (pPce1->NumFrontChannelElements != pPce2->NumFrontChannelElements) { in CProgramConfig_Compare()
306 for (el = 0; el < pPce1->NumFrontChannelElements; el += 1) { in CProgramConfig_Compare()
307 if (pPce1->FrontElementHeightInfo[el] != pPce2->FrontElementHeightInfo[el]) { in CProgramConfig_Compare()
311 numCh1 += pPce1->FrontElementIsCpe[el] ? 2 : 1; in CProgramConfig_Compare()
319 if (pPce1->NumSideChannelElements != pPce2->NumSideChannelElements) { in CProgramConfig_Compare()
323 for (el = 0; el < pPce1->NumSideChannelElements; el += 1) { in CProgramConfig_Compare()
324 if (pPce1->SideElementHeightInfo[el] != pPce2->SideElementHeightInfo[el]) { in CProgramConfig_Compare()
328 numCh1 += pPce1->SideElementIsCpe[el] ? 2 : 1; in CProgramConfig_Compare()
336 if (pPce1->NumBackChannelElements != pPce2->NumBackChannelElements) { in CProgramConfig_Compare()
340 for (el = 0; el < pPce1->NumBackChannelElements; el += 1) { in CProgramConfig_Compare()
341 if (pPce1->BackElementHeightInfo[el] != pPce2->BackElementHeightInfo[el]) { in CProgramConfig_Compare()
345 numCh1 += pPce1->BackElementIsCpe[el] ? 2 : 1; in CProgramConfig_Compare()
353 if (pPce1->NumLfeChannelElements != pPce2->NumLfeChannelElements) { in CProgramConfig_Compare()