Changeset 401 in 3DVCSoftware for branches/HTM-DEV-0.1-dev/source/Lib/TLibDecoder
- Timestamp:
- 13 May 2013, 16:09:14 (12 years ago)
- 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 578 578 { 579 579 #if L0323_DPB 580 #if H_MV 581 READ_UVLC ( uiCode, "sps_max_dec_pic_buffering_minus1[i]"); 582 #else 580 583 READ_UVLC ( uiCode, "sps_max_dec_pic_buffering_minus1"); 584 #endif 581 585 pcSPS->setMaxDecPicBuffering( uiCode + 1, i); 582 586 #else … … 584 588 pcSPS->setMaxDecPicBuffering( uiCode, i); 585 589 #endif 590 #if H_MV 591 READ_UVLC ( uiCode, "sps_num_reorder_pics[i]" ); 592 #else 586 593 READ_UVLC ( uiCode, "sps_num_reorder_pics" ); 594 #endif 587 595 pcSPS->setNumReorderPics(uiCode, i); 596 #if H_MV 597 READ_UVLC ( uiCode, "sps_max_latency_increase[i]"); 598 #else 588 599 READ_UVLC ( uiCode, "sps_max_latency_increase"); 600 #endif 589 601 pcSPS->setMaxLatencyIncrease( uiCode, i ); 590 602 … … 694 706 { 695 707 UInt uiCode; 696 708 697 709 READ_CODE( 4, uiCode, "vps_video_parameter_set_id" ); pcVPS->setVPSId( uiCode ); 698 710 READ_CODE( 2, uiCode, "vps_reserved_three_2bits" ); assert(uiCode == 3); … … 1204 1216 } 1205 1217 } 1206 // } 1218 // } 1207 1219 TComRefPicListModification* refPicListModification = rpcSlice->getRefPicListModification(); 1220 1208 1221 if(!rpcSlice->isIntra()) 1209 1222 { -
branches/HTM-DEV-0.1-dev/source/Lib/TLibDecoder/TDecTop.cpp
r372 r401 50 50 m_iMaxRefPicNum = 0; 51 51 #if ENC_DEC_TRACE 52 #if H_MV 53 if ( g_hTrace == NULL ) 54 { 55 #endif 52 56 g_hTrace = fopen( "TraceDec.txt", "wb" ); 53 57 g_bJustDoIt = g_bEncDecTraceDisable; 54 58 g_nSymbolCounter = 0; 59 #if H_MV 60 } 61 #endif 55 62 #endif 56 63 m_pocCRA = 0;
Note: See TracChangeset for help on using the changeset viewer.