Changeset 838 in 3DVCSoftware for branches/HTM-10.0rc1-dev0/source/App


Ignore:
Timestamp:
8 Feb 2014, 01:07:38 (11 years ago)
Author:
tech
Message:

Further fixes.

Location:
branches/HTM-10.0rc1-dev0/source/App
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-10.0rc1-dev0/source/App/TAppDecoder/TAppDecTop.cpp

    r837 r838  
    279279          bitstreamFile.seekg(location-streamoff(3));
    280280          bytestream.reset();
    281 #if ENC_DEC_TRACE
    282281#if H_MV_ENC_DEC_TRAC
    283282          const Bool resetCounter = false;
     
    290289            g_disableHLSTrace = true;     // Trancing of second parsing of SH is not carried out
    291290          }         
    292 #else
    293           g_nSymbolCounter = symCount;
    294 #endif
    295291#endif
    296292        }
  • branches/HTM-10.0rc1-dev0/source/App/TAppEncoder/TAppEncCfg.cpp

    r837 r838  
    444444  ("QuadtreeTUMaxDepthIntra", m_uiQuadtreeTUMaxDepthIntra, 1u, "Depth of TU tree for intra CUs")
    445445  ("QuadtreeTUMaxDepthInter", m_uiQuadtreeTUMaxDepthInter, 2u, "Depth of TU tree for inter CUs")
     446#if H_MV 
    446447  // Coding structure parameters
    447 #if H_MV 
    448448  ("IntraPeriod,-ip",         m_iIntraPeriod,std::vector<Int>(1,-1), "Intra period in frames, (-1: only first frame), per layer")
    449449#else
     450  // Coding structure paramters
    450451("IntraPeriod,-ip",         m_iIntraPeriod,              -1, "Intra period in frames, (-1: only first frame)")
    451452#endif
     
    629630
    630631  ("TransquantBypassEnableFlag", m_TransquantBypassEnableFlag, false, "transquant_bypass_enable_flag indicator in PPS")
    631   ("CUTransquantBypassFlagValue", m_CUTransquantBypassFlagValue, false, "Fixed cu_transquant_bypass_flag value, when transquant_bypass_enable_flag is enabled")
     632  ("CUTransquantBypassFlagForce", m_CUTransquantBypassFlagForce, false, "Force transquant bypass mode, when transquant_bypass_enable_flag is enabled")
    632633  ("RecalculateQPAccordingToLambda", m_recalculateQPAccordingToLambda, false, "Recalculate QP values according to lambda values. Do not suggest to be enabled in all intra case")
    633634  ("StrongIntraSmoothing,-sis",      m_useStrongIntraSmoothing,           true, "Enable strong intra smoothing for 32x32 blocks")
     
    23612362  printf("IBD:%d ", g_bitDepthY > m_inputBitDepthY || g_bitDepthC > m_inputBitDepthC);
    23622363  printf("HAD:%d ", m_bUseHADME           );
    2363   printf("SRD:%d ", m_bUseSBACRD          );
    23642364  printf("RDQ:%d ", m_useRDOQ            );
    23652365  printf("RDQTS:%d ", m_useRDOQTS        );
  • branches/HTM-10.0rc1-dev0/source/App/TAppEncoder/TAppEncCfg.h

    r837 r838  
    286286
    287287  // coding tools (encoder-only parameters)
    288   Bool      m_bUseSBACRD;                                     ///< flag for using RD optimization based on SBAC
    289288  Bool      m_bUseASR;                                        ///< flag for using adaptive motion search range
    290289  Bool      m_bUseHADME;                                      ///< flag for using HAD in sub-pel ME
     
    385384  UInt       m_depthMADPred;
    386385#endif
    387 #else
    388   Bool      m_enableRateCtrl;                                   ///< Flag for using rate control algorithm
    389   Int       m_targetBitrate;                                 ///< target bitrate
    390   Int       m_numLCUInUnit;                                  ///< Total number of LCUs in a frame should be completely divided by the NumLCUInUnit
    391 
    392 #if KWU_RC_VIEWRC_E0227
    393   vector<Int>     m_viewTargetBits;
    394   Bool      m_viewWiseRateCtrl;                              ///< Flag for using view-wise rate control
    395 #endif
    396 #if KWU_RC_MADPRED_E0227
    397   UInt       m_depthMADPred;
    398 #endif
    399 #endif
    400386  Int       m_useScalingListId;                               ///< using quantization matrix
    401387  Char*     m_scalingListFile;                                ///< quantization matrix file name
Note: See TracChangeset for help on using the changeset viewer.