Changeset 1273 in SHVCSoftware for branches/SHM-dev/source/App
- Timestamp:
- 15 Jul 2015, 20:51:59 (10 years ago)
- Location:
- branches/SHM-dev/source/App
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/App/TAppDecoder/TAppDecCfg.cpp
r1259 r1273 116 116 "\t1: check hash in SEI messages if available in the bitstream\n" 117 117 "\t0: ignore SEI message") 118 ("SEIpictureDigest", m_decodedPictureHashSEIEnabled, 1, "deprecated alias for SEIDecodedPictureHash")119 118 ("SEINoDisplay", m_decodedNoDisplaySEIEnabled, true, "Control handling of decoded no display SEI messages") 120 119 ("TarDecLayerIdSetFile,l", cfg_TargetDecLayerIdSetFile, string(""), "targetDecLayerIdSet file name. The file should include white space separated LayerId values to be decoded. Omitting the option or a value of -1 in the file decodes all layers.") -
branches/SHM-dev/source/App/TAppDecoder/TAppDecTop.cpp
r1260 r1273 1544 1544 this->setMetadataFileRefresh(false); 1545 1545 1546 TCom Digestrecon_digest;1546 TComPictureHash recon_digest; 1547 1547 Int numChar = calcMD5(*pic->getPicYuvRec(), recon_digest); 1548 fprintf(fptr, "%8d%9d MD5:%s\n", pic->getLayerId(), pic->getSlice(0)->getPOC(), digestToString(recon_digest, numChar).c_str());1548 fprintf(fptr, "%8d%9d MD5:%s\n", pic->getLayerId(), pic->getSlice(0)->getPOC(), hashToString(recon_digest, numChar).c_str()); 1549 1549 fclose(fptr); 1550 1550 } -
branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.cpp
r1259 r1273 1401 1401 "\t1: use MD5\n" 1402 1402 "\t0: disable") 1403 ("SEIpictureDigest", m_decodedPictureHashSEIEnabled, 0, "deprecated alias for SEIDecodedPictureHash")1404 1403 ("TMVPMode", m_TMVPModeId, 1, "TMVP mode 0: TMVP disable for all slices. 1: TMVP enable for all slices (default) 2: TMVP enable for certain slices only") 1405 1404 ("FEN", m_bUseFastEnc, false, "fast encoder setting") … … 4135 4134 if((m_numTileColumnsMinus1 <= 0) && (m_numTileRowsMinus1 <= 0) && m_tmctsSEIEnabled) 4136 4135 { 4137 printf(" SEITempMotionConstrainedTileSets is set to false to disable 'temporal_motion_constrained_tile_sets' SEI because there are no tiles enabled\n");4136 printf("Warning: SEITempMotionConstrainedTileSets is set to false to disable temporal motion-constrained tile sets SEI message because there are no tiles enabled.\n"); 4138 4137 m_tmctsSEIEnabled = false; 4139 4138 } -
branches/SHM-dev/source/App/TAppEncoder/TAppEncTop.cpp
r1260 r1273 1604 1604 numDU ++; 1605 1605 } 1606 vps->getBspHrd(i)->setNumDU( numDU );1606 //vps->getBspHrd(i)->setNumDU( numDU ); 1607 1607 vps->setBspHrdParameters( i, pcCfgLayer->getFrameRate(), numDU, pcCfgLayer->getTargetBitrate(), ( pcCfgLayer->getIntraPeriod() > 0 ) ); 1608 1608 }
Note: See TracChangeset for help on using the changeset viewer.