Changeset 1219 in SHVCSoftware for branches/SHM-dev/source
- Timestamp:
- 8 Jul 2015, 23:52:07 (9 years ago)
- Location:
- branches/SHM-dev/source
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/App/TAppEncoder/TAppEncTop.cpp
r1214 r1219 1905 1905 1906 1906 // write bitstream out 1907 if(iTotalNumEncoded) 1908 { 1909 #if P0130_EOB 1907 if( iTotalNumEncoded ) 1908 { 1910 1909 if( bEos ) 1911 1910 { … … 1917 1916 accessUnit.push_back(new NALUnitEBSP(nalu)); 1918 1917 } 1919 #endif 1918 1920 1919 xWriteStream(bitstreamFile, iTotalNumEncoded, outputAccessUnits); 1921 1920 outputAccessUnits.clear(); … … 2130 2129 return; 2131 2130 } 2132 #endif 2131 #endif //SVC_EXTENSION 2133 2132 2134 2133 // ==================================================================================================================== -
branches/SHM-dev/source/Lib/TLibCommon/TypeDef.h
r1218 r1219 46 46 #define MAX_LAYERS 8 ///< max number of layers the codec is supposed to handle 47 47 #define CONFORMANCE_BITSTREAM_MODE 1 ///< In order to generate the metadata related to conformance bitstreams 48 #define BSP_INIT_ARRIVAL_SEI 1 ///< JCTVC-R0231: Make signalling of vcl_initial_arrival_delay independent of NalHrdBpPresentFlag49 48 50 49 #define Q0177_EOS_CHECKS 1 ///< JCTVC-Q0177; Put checks on handling EOS 51 #define P0130_EOB 1 ///< JCTVC-P0130, set layer Id of EOB NALU to be fixed to 052 50 #define DISCARDABLE_PIC_RPS 1 ///< JCTVC-P0130: Inter-layer RPS and temporal RPS should not contain picture with discardable_flag equal to 1 53 51 #define ALIGNED_BUMPING 1 ///< JCTVC-P0192: Align bumping of pictures in an AU … … 121 119 #endif 122 120 #define P0123_ALPHA_CHANNEL_SEI 1 ///< JCTVC-P0123: SEI message for alpha channel information 121 #define BSP_INIT_ARRIVAL_SEI 1 ///< JCTVC-R0231: Make signalling of vcl_initial_arrival_delay independent of NalHrdBpPresentFlag 123 122 124 123 /// constants -
branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp
r1213 r1219 2070 2070 2071 2071 case NAL_UNIT_EOB: 2072 #if P0130_EOB2072 #if SVC_EXTENSION 2073 2073 //Check layer id of the nalu. if it is not 0, give a warning message. 2074 2074 if (nalu.m_layerId > 0)
Note: See TracChangeset for help on using the changeset viewer.