Changeset 1413 in 3DVCSoftware for trunk/source/Lib/TLibCommon/TComLoopFilter.cpp
- Timestamp:
- 11 Jul 2018, 15:19:49 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/Lib/TLibCommon/TComLoopFilter.cpp
r1405 r1413 4 4 * granted under this license. 5 5 * 6 * Copyright (c) 2010-201 6, ITU/ISO/IEC6 * Copyright (c) 2010-2017, ITU/ISO/IEC 7 7 * All rights reserved. 8 8 * … … 561 561 Pel *piTmpSrc = piSrc; 562 562 const TComSPS &sps = *(pcCU->getSlice()->getSPS()); 563 const Bool ppsTransquantBypassEnable Flag = pcCU->getSlice()->getPPS()->getTransquantBypassEnableFlag();563 const Bool ppsTransquantBypassEnabledFlag = pcCU->getSlice()->getPPS()->getTransquantBypassEnabledFlag(); 564 564 const Int bitDepthLuma = sps.getBitDepth(CHANNEL_TYPE_LUMA); 565 565 const Bool lfCrossSliceBoundaryFlag = pcCU->getSlice()->getLFCrossSliceBoundaryFlag(); … … 644 644 Int d = d0 + d3; 645 645 646 if (bPCMFilter || ppsTransquantBypassEnable Flag)646 if (bPCMFilter || ppsTransquantBypassEnabledFlag) 647 647 { 648 648 // Check if each of PUs is I_PCM with LF disabling … … 769 769 iQP_P = pcCUP->getQP(uiPartPIdx); 770 770 771 if (bPCMFilter || pcCU->getSlice()->getPPS()->getTransquantBypassEnable Flag())771 if (bPCMFilter || pcCU->getSlice()->getPPS()->getTransquantBypassEnabledFlag()) 772 772 { 773 773 // Check if each of PUs is I_PCM with LF disabling
Note: See TracChangeset for help on using the changeset viewer.