Changeset 1335 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder
- Timestamp:
- 22 Jul 2015, 02:37:09 (10 years ago)
- Location:
- branches/SHM-dev/source/Lib/TLibDecoder
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/AnnexBread.h
r1259 r1335 46 46 #include <vector> 47 47 48 #include "TLibCommon/ TypeDef.h"48 #include "TLibCommon/CommonDef.h" 49 49 50 50 //! \ingroup TLibDecoder -
branches/SHM-dev/source/Lib/TLibDecoder/NALread.h
r1319 r1335 42 42 #define __NALREAD__ 43 43 44 #include "TLibCommon/ TypeDef.h"44 #include "TLibCommon/CommonDef.h" 45 45 #include "TLibCommon/TComBitStream.h" 46 46 #include "TLibCommon/NAL.h" -
branches/SHM-dev/source/Lib/TLibDecoder/TDecBinCoderCABAC.cpp
r1259 r1335 111 111 #endif 112 112 { 113 #if defDEBUG_CABAC_BINS113 #if DEBUG_CABAC_BINS 114 114 const UInt startingRange = m_uiRange; 115 115 #endif … … 161 161 } 162 162 163 #if defDEBUG_CABAC_BINS163 #if DEBUG_CABAC_BINS 164 164 if ((g_debugCounter + debugCabacBinWindow) >= debugCabacBinTargetLine) 165 165 { -
branches/SHM-dev/source/Lib/TLibDecoder/TDecCu.cpp
r1316 r1335 457 457 } 458 458 459 #if defDEBUG_STRING459 #if DEBUG_STRING 460 460 const PredMode predMode=m_ppcCU[uiDepth]->getPredictionMode(0); 461 461 if (DebugOptionList::DebugString_Structure.getInt()&DebugStringGetPredModeMask(predMode)) … … 482 482 m_pcPrediction->motionCompensation( pcCU, m_ppcYuvReco[uiDepth] ); 483 483 484 #if defDEBUG_STRING484 #if DEBUG_STRING 485 485 const Int debugPredModeMask=DebugStringGetPredModeMask(MODE_INTER); 486 486 if (DebugOptionList::DebugString_Pred.getInt()&debugPredModeMask) … … 493 493 xDecodeInterTexture( pcCU, uiDepth ); 494 494 495 #if defDEBUG_STRING495 #if DEBUG_STRING 496 496 if (DebugOptionList::DebugString_Resi.getInt()&debugPredModeMask) 497 497 { … … 513 513 m_ppcYuvReco[uiDepth]->copyPartToPartYuv( m_ppcYuvReco[uiDepth],0, pcCU->getWidth( 0 ),pcCU->getHeight( 0 )); 514 514 } 515 #if defDEBUG_STRING515 #if DEBUG_STRING 516 516 if (DebugOptionList::DebugString_Reco.getInt()&debugPredModeMask) 517 517 { … … 578 578 const Bool bUseFilteredPredictions=TComPrediction::filteringIntraReferenceSamples(compID, uiChFinalMode, uiWidth, uiHeight, chFmt, pcCU->getSlice()->getSPS()->getSpsRangeExtension().getIntraSmoothingDisabledFlag()); 579 579 580 #if defDEBUG_STRING580 #if DEBUG_STRING 581 581 std::ostream &ss(std::cout); 582 582 #endif … … 590 590 m_pcPrediction->predIntraAng( compID, uiChFinalMode, 0 /* Decoder does not have an original image */, 0, piPred, uiStride, rTu, bAboveAvail, bLeftAvail, bUseFilteredPredictions ); 591 591 592 #if defDEBUG_STRING592 #if DEBUG_STRING 593 593 ss << sTemp; 594 594 #endif … … 602 602 603 603 DEBUG_STRING_NEW(sDebug); 604 #if defDEBUG_STRING604 #if DEBUG_STRING 605 605 const Int debugPredModeMask=DebugStringGetPredModeMask(MODE_INTRA); 606 606 std::string *psDebug=(DebugOptionList::DebugString_InvTran.getInt()&debugPredModeMask) ? &sDebug : 0; … … 622 622 } 623 623 624 #if defDEBUG_STRING624 #if DEBUG_STRING 625 625 if (psDebug) 626 626 { … … 642 642 643 643 644 #if defDEBUG_STRING644 #if DEBUG_STRING 645 645 const Bool bDebugPred=((DebugOptionList::DebugString_Pred.getInt()&debugPredModeMask) && DEBUG_STRING_CHANNEL_CONDITION(compID)); 646 646 const Bool bDebugResi=((DebugOptionList::DebugString_Resi.getInt()&debugPredModeMask) && DEBUG_STRING_CHANNEL_CONDITION(compID)); … … 668 668 for( UInt uiY = 0; uiY < uiHeight; uiY++ ) 669 669 { 670 #if defDEBUG_STRING670 #if DEBUG_STRING 671 671 if (bDebugPred || bDebugResi || bDebugReco) 672 672 { … … 690 690 for( UInt uiX = 0; uiX < uiWidth; uiX++ ) 691 691 { 692 #if defDEBUG_STRING692 #if DEBUG_STRING 693 693 if (bDebugResi) 694 694 { … … 703 703 pRecIPred[ uiX ] = pReco[ uiX ]; 704 704 } 705 #if defDEBUG_STRING705 #if DEBUG_STRING 706 706 if (bDebugReco) 707 707 {
Note: See TracChangeset for help on using the changeset viewer.