Changeset 838 in 3DVCSoftware for branches/HTM-10.0rc1-dev0/source/App
- Timestamp:
- 8 Feb 2014, 01:07:38 (11 years ago)
- 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 279 279 bitstreamFile.seekg(location-streamoff(3)); 280 280 bytestream.reset(); 281 #if ENC_DEC_TRACE282 281 #if H_MV_ENC_DEC_TRAC 283 282 const Bool resetCounter = false; … … 290 289 g_disableHLSTrace = true; // Trancing of second parsing of SH is not carried out 291 290 } 292 #else293 g_nSymbolCounter = symCount;294 #endif295 291 #endif 296 292 } -
branches/HTM-10.0rc1-dev0/source/App/TAppEncoder/TAppEncCfg.cpp
r837 r838 444 444 ("QuadtreeTUMaxDepthIntra", m_uiQuadtreeTUMaxDepthIntra, 1u, "Depth of TU tree for intra CUs") 445 445 ("QuadtreeTUMaxDepthInter", m_uiQuadtreeTUMaxDepthInter, 2u, "Depth of TU tree for inter CUs") 446 #if H_MV 446 447 // Coding structure parameters 447 #if H_MV448 448 ("IntraPeriod,-ip", m_iIntraPeriod,std::vector<Int>(1,-1), "Intra period in frames, (-1: only first frame), per layer") 449 449 #else 450 // Coding structure paramters 450 451 ("IntraPeriod,-ip", m_iIntraPeriod, -1, "Intra period in frames, (-1: only first frame)") 451 452 #endif … … 629 630 630 631 ("TransquantBypassEnableFlag", m_TransquantBypassEnableFlag, false, "transquant_bypass_enable_flag indicator in PPS") 631 ("CUTransquantBypassFlag Value", 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") 632 633 ("RecalculateQPAccordingToLambda", m_recalculateQPAccordingToLambda, false, "Recalculate QP values according to lambda values. Do not suggest to be enabled in all intra case") 633 634 ("StrongIntraSmoothing,-sis", m_useStrongIntraSmoothing, true, "Enable strong intra smoothing for 32x32 blocks") … … 2361 2362 printf("IBD:%d ", g_bitDepthY > m_inputBitDepthY || g_bitDepthC > m_inputBitDepthC); 2362 2363 printf("HAD:%d ", m_bUseHADME ); 2363 printf("SRD:%d ", m_bUseSBACRD );2364 2364 printf("RDQ:%d ", m_useRDOQ ); 2365 2365 printf("RDQTS:%d ", m_useRDOQTS ); -
branches/HTM-10.0rc1-dev0/source/App/TAppEncoder/TAppEncCfg.h
r837 r838 286 286 287 287 // coding tools (encoder-only parameters) 288 Bool m_bUseSBACRD; ///< flag for using RD optimization based on SBAC289 288 Bool m_bUseASR; ///< flag for using adaptive motion search range 290 289 Bool m_bUseHADME; ///< flag for using HAD in sub-pel ME … … 385 384 UInt m_depthMADPred; 386 385 #endif 387 #else388 Bool m_enableRateCtrl; ///< Flag for using rate control algorithm389 Int m_targetBitrate; ///< target bitrate390 Int m_numLCUInUnit; ///< Total number of LCUs in a frame should be completely divided by the NumLCUInUnit391 392 #if KWU_RC_VIEWRC_E0227393 vector<Int> m_viewTargetBits;394 Bool m_viewWiseRateCtrl; ///< Flag for using view-wise rate control395 #endif396 #if KWU_RC_MADPRED_E0227397 UInt m_depthMADPred;398 #endif399 #endif400 386 Int m_useScalingListId; ///< using quantization matrix 401 387 Char* m_scalingListFile; ///< quantization matrix file name
Note: See TracChangeset for help on using the changeset viewer.