Changeset 882 in SHVCSoftware for branches/SHM-dev/source
- Timestamp:
- 4 Sep 2014, 23:18:21 (11 years ago)
- Location:
- branches/SHM-dev/source/Lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r878 r882 4210 4210 #if R0150_CGS_SIGNAL_CONSTRAINTS 4211 4211 UInt uiChromaInputBitDepthM8 , uiChromaOutputBitDepthM8; 4212 READ_ CODE( 3 ,uiInputBitDepthM8 , "cm_input_luma_bit_depth_minus8" );4213 READ_ CODE( 3 ,uiChromaInputBitDepthM8 , "cm_input_chroma_bit_depth_minus8" );4214 READ_ CODE( 3 ,uiOutputBitDepthM8 , "cm_output_luma_bit_depth_minus8" );4215 READ_ CODE( 3 ,uiChromaOutputBitDepthM8 , "cm_output_chroma_bit_depth_minus8" );4212 READ_UVLC( uiInputBitDepthM8 , "cm_input_luma_bit_depth_minus8" ); 4213 READ_UVLC( uiChromaInputBitDepthM8 , "cm_input_chroma_bit_depth_minus8" ); 4214 READ_UVLC( uiOutputBitDepthM8 , "cm_output_luma_bit_depth_minus8" ); 4215 READ_UVLC( uiChromaOutputBitDepthM8 , "cm_output_chroma_bit_depth_minus8" ); 4216 4216 #else 4217 4217 READ_CODE( 3 , uiInputBitDepthM8 , "cm_input_bit_depth_minus8" ); -
branches/SHM-dev/source/Lib/TLibEncoder/TEncCavlc.cpp
r880 r882 2942 2942 assert( pc3DAsymLUT->getInputBitDepthY() < 16 ); 2943 2943 #if R0150_CGS_SIGNAL_CONSTRAINTS 2944 WRITE_ CODE( pc3DAsymLUT->getInputBitDepthY() - 8 , 3, "cm_input_luma_bit_depth_minus8" );2945 WRITE_ CODE( pc3DAsymLUT->getInputBitDepthC() - 8 , 3, "cm_input_chroma_bit_depth_minus8" );2946 WRITE_ CODE( pc3DAsymLUT->getOutputBitDepthY() - 8 , 3, "cm_output_luma_bit_depth_minus8" );2947 WRITE_ CODE( pc3DAsymLUT->getOutputBitDepthC() - 8 , 3, "cm_output_chroma_bit_depth_minus8" );2944 WRITE_UVLC( pc3DAsymLUT->getInputBitDepthY() - 8 , "cm_input_luma_bit_depth_minus8" ); 2945 WRITE_UVLC( pc3DAsymLUT->getInputBitDepthC() - 8 , "cm_input_chroma_bit_depth_minus8" ); 2946 WRITE_UVLC( pc3DAsymLUT->getOutputBitDepthY() - 8 , "cm_output_luma_bit_depth_minus8" ); 2947 WRITE_UVLC( pc3DAsymLUT->getOutputBitDepthC() - 8 , "cm_output_chroma_bit_depth_minus8" ); 2948 2948 #else 2949 2949 WRITE_CODE( pc3DAsymLUT->getInputBitDepthY() - 8 , 3 , "cm_input_bit_depth_minus8" );
Note: See TracChangeset for help on using the changeset viewer.