Ignore:
Timestamp:
19 Apr 2014, 06:59:58 (11 years ago)
Author:
seregin
Message:

change the conformance input to be not multiplied by SubWidthC and SubHeightC, it should be a lossless change

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-6-dev/source/App/TAppEncoder/TAppEncCfg.cpp

    r694 r705  
    12231223        if( i >= m_acLayerCfg[layer].m_numSamplePredRefLayers )
    12241224        {
    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 );
    12261226          exit( EXIT_FAILURE );
    12271227        }
     
    12321232      if( i < m_acLayerCfg[layer].m_numSamplePredRefLayers )
    12331233      {
    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 );
    12351235        exit( EXIT_FAILURE );
    12361236      }
     
    12541254        if( i >= m_acLayerCfg[layer].m_numMotionPredRefLayers )
    12551255        {
    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 );
    12571257          exit( EXIT_FAILURE );
    12581258        }
     
    12631263      if( i < m_acLayerCfg[layer].m_numMotionPredRefLayers )
    12641264      {
    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 );
    12661266        exit( EXIT_FAILURE );
    12671267      }
     
    12931293        if( i >= m_acLayerCfg[layer].m_numActiveRefLayers )
    12941294        {
    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 );
    12961296          exit( EXIT_FAILURE );
    12971297        }
     
    13021302      if( i < m_acLayerCfg[layer].m_numActiveRefLayers )
    13031303      {
    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 );
    13051305        exit( EXIT_FAILURE );
    13061306      }
Note: See TracChangeset for help on using the changeset viewer.