Ignore:
Timestamp:
20 Jul 2015, 14:13:33 (9 years ago)
Author:
tech
Message:

Upgrade to HM-16.6.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-14.1-update-dev1/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r1279 r1287  
    23492349#endif
    23502350      TComReferencePictureSet* rps = pcSlice->getLocalRPS();
    2351       rps->setNumberOfNegativePictures(0);
    2352       rps->setNumberOfPositivePictures(0);
    2353       rps->setNumberOfLongtermPictures(0);
    2354       rps->setNumberOfPictures(0);
     2351      (*rps)=TComReferencePictureSet();
    23552352      pcSlice->setRPS(rps);
    23562353#if NH_MV
     
    23912388      TComReferencePictureSet* rps;
    23922389      rps = pcSlice->getLocalRPS();
     2390      (*rps)=TComReferencePictureSet();
     2391
    23932392      pcSlice->setRPS(rps);
    23942393      READ_FLAG( uiCode, "short_term_ref_pic_set_sps_flag" );
     
    25282527        // In the case of BLA picture types, rps data is read from slice header but ignored
    25292528        rps = pcSlice->getLocalRPS();
    2530         rps->setNumberOfNegativePictures(0);
    2531         rps->setNumberOfPositivePictures(0);
    2532         rps->setNumberOfLongtermPictures(0);
    2533         rps->setNumberOfPictures(0);
     2529        (*rps)=TComReferencePictureSet();
    25342530        pcSlice->setRPS(rps);
    25352531      }
Note: See TracChangeset for help on using the changeset viewer.