Changeset 570 in SHVCSoftware for branches/SHM-5.0-dev/source/Lib/TLibDecoder
- Timestamp:
- 28 Jan 2014, 05:08:27 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-5.0-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r569 r570 1603 1603 } 1604 1604 #endif 1605 #if VPS_VUI_VIDEO_SIGNAL_MOVE 1606 READ_FLAG( uiCode, "video_signal_info_idx_present_flag" ); vps->setVideoSigPresentVpsFlag( uiCode == 1 ); 1607 if (vps->getVideoSigPresentVpsFlag()) 1608 { 1609 READ_CODE(4, uiCode, "vps_num_video_signal_info_minus1" ); vps->setNumVideoSignalInfo(uiCode + 1); 1610 } 1611 else 1612 { 1613 vps->setNumVideoSignalInfo(vps->getMaxLayers()); 1614 } 1615 1616 1617 for(i = 0; i < vps->getNumVideoSignalInfo(); i++) 1618 { 1619 READ_CODE(3, uiCode, "video_vps_format" ); vps->setVideoVPSFormat(i,uiCode); 1620 READ_FLAG(uiCode, "video_full_range_vps_flag" ); vps->setVideoFullRangeVpsFlag(i,uiCode); 1621 READ_CODE(8, uiCode, "color_primaries_vps" ); vps->setColorPrimaries(i,uiCode); 1622 READ_CODE(8, uiCode, "transfer_characteristics_vps" ); vps->setTransCharacter(i,uiCode); 1623 READ_CODE(8, uiCode, "matrix_coeffs_vps" );vps->setMaxtrixCoeff(i,uiCode); 1624 } 1625 if(!vps->getVideoSigPresentVpsFlag()) 1626 { 1627 for (i=0; i < vps->getMaxLayers(); i++) 1628 { 1629 vps->setVideoSignalInfoIdx(i,i); 1630 } 1631 } 1632 else { 1633 vps->setVideoSignalInfoIdx(0,0); 1634 if (vps->getNumVideoSignalInfo() > 1 ) 1635 { 1636 for (i=1; i < vps->getMaxLayers(); i++) 1637 READ_CODE(4, uiCode, "vps_video_signal_info_idx" ); vps->setVideoSignalInfoIdx(i, uiCode); 1638 } 1639 else { 1640 for (i=1; i < vps->getMaxLayers(); i++) 1641 { 1642 vps->setVideoSignalInfoIdx(i,0); 1643 } 1644 } 1645 } 1646 #endif 1605 1647 #if VPS_VUI_TILES_NOT_IN_USE__FLAG 1606 1648 UInt layerIdx; … … 1682 1724 #endif 1683 1725 #if VPS_VUI_VIDEO_SIGNAL 1726 #if VPS_VUI_VIDEO_SIGNAL_MOVE 1727 #else 1684 1728 READ_FLAG( uiCode, "video_signal_info_idx_present_flag" ); vps->setVideoSigPresentVpsFlag( uiCode == 1 ); 1685 1729 if (vps->getVideoSigPresentVpsFlag()) … … 1722 1766 } 1723 1767 } 1768 #endif 1724 1769 #endif 1725 1770 }
Note: See TracChangeset for help on using the changeset viewer.