Changeset 1190 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder
- Timestamp:
- 8 Jul 2015, 03:47:31 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1189 r1190 2725 2725 } 2726 2726 2727 #if VIEW_ID_RELATED_SIGNALING2728 #if O0109_VIEW_ID_LEN2729 2727 READ_CODE( 4, uiCode, "view_id_len" ); vps->setViewIdLen( uiCode ); 2730 #else 2731 READ_CODE( 4, uiCode, "view_id_len_minus1" ); vps->setViewIdLenMinus1( uiCode ); 2732 #endif 2733 2734 #if O0109_VIEW_ID_LEN 2728 2735 2729 if ( vps->getViewIdLen() > 0 ) 2736 2730 { 2737 for( 2731 for( i = 0; i < vps->getNumViews(); i++ ) 2738 2732 { 2739 2733 READ_CODE( vps->getViewIdLen( ), uiCode, "view_id_val[i]" ); vps->setViewIdVal( i, uiCode ); 2740 2734 } 2741 2735 } 2742 #else2743 for( i = 0; i < vps->getNumViews(); i++ )2744 {2745 READ_CODE( vps->getViewIdLenMinus1( ) + 1, uiCode, "view_id_val[i]" ); vps->setViewIdVal( i, uiCode );2746 }2747 #endif2748 #endif // view id related signaling2749 2736 2750 2737 // For layer 0
Note: See TracChangeset for help on using the changeset viewer.