Changeset 1335 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder


Ignore:
Timestamp:
22 Jul 2015, 02:37:09 (10 years ago)
Author:
seregin
Message:

port rev 4413

Location:
branches/SHM-dev/source/Lib/TLibDecoder
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/Lib/TLibDecoder/AnnexBread.h

    r1259 r1335  
    4646#include <vector>
    4747
    48 #include "TLibCommon/TypeDef.h"
     48#include "TLibCommon/CommonDef.h"
    4949
    5050//! \ingroup TLibDecoder
  • branches/SHM-dev/source/Lib/TLibDecoder/NALread.h

    r1319 r1335  
    4242#define __NALREAD__
    4343
    44 #include "TLibCommon/TypeDef.h"
     44#include "TLibCommon/CommonDef.h"
    4545#include "TLibCommon/TComBitStream.h"
    4646#include "TLibCommon/NAL.h"
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecBinCoderCABAC.cpp

    r1259 r1335  
    111111#endif
    112112{
    113 #ifdef DEBUG_CABAC_BINS
     113#if DEBUG_CABAC_BINS
    114114  const UInt startingRange = m_uiRange;
    115115#endif
     
    161161  }
    162162
    163 #ifdef DEBUG_CABAC_BINS
     163#if DEBUG_CABAC_BINS
    164164  if ((g_debugCounter + debugCabacBinWindow) >= debugCabacBinTargetLine)
    165165  {
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecCu.cpp

    r1316 r1335  
    457457  }
    458458
    459 #ifdef DEBUG_STRING
     459#if DEBUG_STRING
    460460  const PredMode predMode=m_ppcCU[uiDepth]->getPredictionMode(0);
    461461  if (DebugOptionList::DebugString_Structure.getInt()&DebugStringGetPredModeMask(predMode))
     
    482482  m_pcPrediction->motionCompensation( pcCU, m_ppcYuvReco[uiDepth] );
    483483
    484 #ifdef DEBUG_STRING
     484#if DEBUG_STRING
    485485  const Int debugPredModeMask=DebugStringGetPredModeMask(MODE_INTER);
    486486  if (DebugOptionList::DebugString_Pred.getInt()&debugPredModeMask)
     
    493493  xDecodeInterTexture( pcCU, uiDepth );
    494494
    495 #ifdef DEBUG_STRING
     495#if DEBUG_STRING
    496496  if (DebugOptionList::DebugString_Resi.getInt()&debugPredModeMask)
    497497  {
     
    513513    m_ppcYuvReco[uiDepth]->copyPartToPartYuv( m_ppcYuvReco[uiDepth],0, pcCU->getWidth( 0 ),pcCU->getHeight( 0 ));
    514514  }
    515 #ifdef DEBUG_STRING
     515#if DEBUG_STRING
    516516  if (DebugOptionList::DebugString_Reco.getInt()&debugPredModeMask)
    517517  {
     
    578578  const Bool bUseFilteredPredictions=TComPrediction::filteringIntraReferenceSamples(compID, uiChFinalMode, uiWidth, uiHeight, chFmt, pcCU->getSlice()->getSPS()->getSpsRangeExtension().getIntraSmoothingDisabledFlag());
    579579
    580 #ifdef DEBUG_STRING
     580#if DEBUG_STRING
    581581  std::ostream &ss(std::cout);
    582582#endif
     
    590590  m_pcPrediction->predIntraAng( compID,   uiChFinalMode, 0 /* Decoder does not have an original image */, 0, piPred, uiStride, rTu, bAboveAvail, bLeftAvail, bUseFilteredPredictions );
    591591
    592 #ifdef DEBUG_STRING
     592#if DEBUG_STRING
    593593  ss << sTemp;
    594594#endif
     
    602602
    603603  DEBUG_STRING_NEW(sDebug);
    604 #ifdef DEBUG_STRING
     604#if DEBUG_STRING
    605605  const Int debugPredModeMask=DebugStringGetPredModeMask(MODE_INTRA);
    606606  std::string *psDebug=(DebugOptionList::DebugString_InvTran.getInt()&debugPredModeMask) ? &sDebug : 0;
     
    622622  }
    623623
    624 #ifdef DEBUG_STRING
     624#if DEBUG_STRING
    625625  if (psDebug)
    626626  {
     
    642642
    643643
    644 #ifdef DEBUG_STRING
     644#if DEBUG_STRING
    645645  const Bool bDebugPred=((DebugOptionList::DebugString_Pred.getInt()&debugPredModeMask) && DEBUG_STRING_CHANNEL_CONDITION(compID));
    646646  const Bool bDebugResi=((DebugOptionList::DebugString_Resi.getInt()&debugPredModeMask) && DEBUG_STRING_CHANNEL_CONDITION(compID));
     
    668668  for( UInt uiY = 0; uiY < uiHeight; uiY++ )
    669669  {
    670 #ifdef DEBUG_STRING
     670#if DEBUG_STRING
    671671    if (bDebugPred || bDebugResi || bDebugReco)
    672672    {
     
    690690    for( UInt uiX = 0; uiX < uiWidth; uiX++ )
    691691    {
    692 #ifdef DEBUG_STRING
     692#if DEBUG_STRING
    693693      if (bDebugResi)
    694694      {
     
    703703      pRecIPred[ uiX ] = pReco[ uiX ];
    704704    }
    705 #ifdef DEBUG_STRING
     705#if DEBUG_STRING
    706706    if (bDebugReco)
    707707    {
Note: See TracChangeset for help on using the changeset viewer.