Ignore:
Timestamp:
13 May 2013, 16:09:14 (12 years ago)
Author:
tech
Message:
  • Fixed trace files for MV-HEVC.
  • Fixed assertion mismatch due to NumPocTotalCurr.
Location:
branches/HTM-DEV-0.1-dev/source/Lib/TLibDecoder
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-DEV-0.1-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r368 r401  
    578578  {
    579579#if L0323_DPB
     580#if H_MV
     581    READ_UVLC ( uiCode, "sps_max_dec_pic_buffering_minus1[i]");
     582#else
    580583    READ_UVLC ( uiCode, "sps_max_dec_pic_buffering_minus1");
     584#endif
    581585    pcSPS->setMaxDecPicBuffering( uiCode + 1, i);
    582586#else
     
    584588    pcSPS->setMaxDecPicBuffering( uiCode, i);
    585589#endif
     590#if H_MV
     591    READ_UVLC ( uiCode, "sps_num_reorder_pics[i]" );
     592#else
    586593    READ_UVLC ( uiCode, "sps_num_reorder_pics" );
     594#endif
    587595    pcSPS->setNumReorderPics(uiCode, i);
     596#if H_MV
     597    READ_UVLC ( uiCode, "sps_max_latency_increase[i]");
     598#else
    588599    READ_UVLC ( uiCode, "sps_max_latency_increase");
     600#endif
    589601    pcSPS->setMaxLatencyIncrease( uiCode, i );
    590602
     
    694706{
    695707  UInt  uiCode;
    696  
     708   
    697709  READ_CODE( 4,  uiCode,  "vps_video_parameter_set_id" );         pcVPS->setVPSId( uiCode );
    698710  READ_CODE( 2,  uiCode,  "vps_reserved_three_2bits" );           assert(uiCode == 3);
     
    12041216      }
    12051217    }
    1206     // }
     1218    // } 
    12071219    TComRefPicListModification* refPicListModification = rpcSlice->getRefPicListModification();
     1220
    12081221    if(!rpcSlice->isIntra())
    12091222    {
  • branches/HTM-DEV-0.1-dev/source/Lib/TLibDecoder/TDecTop.cpp

    r372 r401  
    5050  m_iMaxRefPicNum = 0;
    5151#if ENC_DEC_TRACE
     52#if H_MV
     53  if ( g_hTrace == NULL )
     54  {
     55#endif
    5256  g_hTrace = fopen( "TraceDec.txt", "wb" );
    5357  g_bJustDoIt = g_bEncDecTraceDisable;
    5458  g_nSymbolCounter = 0;
     59#if H_MV
     60  }
     61#endif
    5562#endif
    5663  m_pocCRA = 0;
Note: See TracChangeset for help on using the changeset viewer.