Changeset 1273 in SHVCSoftware for branches/SHM-dev/source/App


Ignore:
Timestamp:
15 Jul 2015, 20:51:59 (10 years ago)
Author:
seregin
Message:

port rev 4306 and rev 4307

Location:
branches/SHM-dev/source/App
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/App/TAppDecoder/TAppDecCfg.cpp

    r1259 r1273  
    116116                                                                                   "\t1: check hash in SEI messages if available in the bitstream\n"
    117117                                                                                   "\t0: ignore SEI message")
    118   ("SEIpictureDigest",          m_decodedPictureHashSEIEnabled,        1,          "deprecated alias for SEIDecodedPictureHash")
    119118  ("SEINoDisplay",              m_decodedNoDisplaySEIEnabled,          true,       "Control handling of decoded no display SEI messages")
    120119  ("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  
    15441544        this->setMetadataFileRefresh(false);
    15451545
    1546         TComDigest recon_digest;
     1546        TComPictureHash recon_digest;
    15471547        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());
    15491549        fclose(fptr);
    15501550      }
  • branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.cpp

    r1259 r1273  
    14011401                                                                                                               "\t1: use MD5\n"
    14021402                                                                                                               "\t0: disable")
    1403   ("SEIpictureDigest",                                m_decodedPictureHashSEIEnabled,                       0, "deprecated alias for SEIDecodedPictureHash")
    14041403  ("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")
    14051404  ("FEN",                                             m_bUseFastEnc,                                    false, "fast encoder setting")
     
    41354134  if((m_numTileColumnsMinus1 <= 0) && (m_numTileRowsMinus1 <= 0) && m_tmctsSEIEnabled)
    41364135  {
    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");
    41384137    m_tmctsSEIEnabled = false;
    41394138  }
  • branches/SHM-dev/source/App/TAppEncoder/TAppEncTop.cpp

    r1260 r1273  
    16041604        numDU ++;
    16051605      }
    1606       vps->getBspHrd(i)->setNumDU( numDU );
     1606      //vps->getBspHrd(i)->setNumDU( numDU );
    16071607      vps->setBspHrdParameters( i, pcCfgLayer->getFrameRate(), numDU, pcCfgLayer->getTargetBitrate(), ( pcCfgLayer->getIntraPeriod() > 0 ) );
    16081608    }
Note: See TracChangeset for help on using the changeset viewer.