Changeset 705 in SHVCSoftware for branches/SHM-6-dev/source/App/TAppEncoder/TAppEncCfg.cpp
- Timestamp:
- 19 Apr 2014, 06:59:58 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-6-dev/source/App/TAppEncoder/TAppEncCfg.cpp
r694 r705 1223 1223 if( i >= m_acLayerCfg[layer].m_numSamplePredRefLayers ) 1224 1224 { 1225 printf( "NumSamplePredRefLayers : The number of columns whose width are defined is larger than the allowed number of columns.\n");1225 printf( "NumSamplePredRefLayers%d: The number of columns whose width are defined is larger than the allowed number of columns.\n", layer ); 1226 1226 exit( EXIT_FAILURE ); 1227 1227 } … … 1232 1232 if( i < m_acLayerCfg[layer].m_numSamplePredRefLayers ) 1233 1233 { 1234 printf( "NumSamplePredRefLayers : The width of some columns is not defined.\n");1234 printf( "NumSamplePredRefLayers%d: The width of some columns is not defined.\n", layer ); 1235 1235 exit( EXIT_FAILURE ); 1236 1236 } … … 1254 1254 if( i >= m_acLayerCfg[layer].m_numMotionPredRefLayers ) 1255 1255 { 1256 printf( "NumMotionPredRefLayers : The number of columns whose width are defined is larger than the allowed number of columns.\n");1256 printf( "NumMotionPredRefLayers%d: The number of columns whose width are defined is larger than the allowed number of columns.\n", layer ); 1257 1257 exit( EXIT_FAILURE ); 1258 1258 } … … 1263 1263 if( i < m_acLayerCfg[layer].m_numMotionPredRefLayers ) 1264 1264 { 1265 printf( "NumMotionPredRefLayers : The width of some columns is not defined.\n");1265 printf( "NumMotionPredRefLayers%d: The width of some columns is not defined.\n", layer ); 1266 1266 exit( EXIT_FAILURE ); 1267 1267 } … … 1293 1293 if( i >= m_acLayerCfg[layer].m_numActiveRefLayers ) 1294 1294 { 1295 printf( "NumActiveRefLayers : The number of columns whose width are defined is larger than the allowed number of columns.\n");1295 printf( "NumActiveRefLayers%d: The number of columns whose width are defined is larger than the allowed number of columns.\n", layer ); 1296 1296 exit( EXIT_FAILURE ); 1297 1297 } … … 1302 1302 if( i < m_acLayerCfg[layer].m_numActiveRefLayers ) 1303 1303 { 1304 printf( "NumActiveRefLayers : The width of some columns is not defined.\n");1304 printf( "NumActiveRefLayers%d: The width of some columns is not defined.\n", layer ); 1305 1305 exit( EXIT_FAILURE ); 1306 1306 }
Note: See TracChangeset for help on using the changeset viewer.