Ignore:
Timestamp:
7 Jul 2014, 11:08:41 (10 years ago)
Author:
seregin
Message:

remove macros SYNTAX_BYTES, SYNTAX_OUTPUT, and AVC_SYNTAX

File:
1 edited

Legend:

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

    r815 r820  
    510510  string  cfg_BLInputFile;
    511511#endif
    512 #if AVC_SYNTAX
    513   string  cfg_BLSyntaxFile;
    514 #endif
    515512#if N0383_IL_CONSTRAINED_TILE_SETS_SEI
    516513  string  cfg_tileSets;
     
    629626  ("AvcBase,-avc",            m_avcBaseLayerFlag,     0, "avc_base_layer_flag")
    630627  ("InputBLFile,-ibl",        cfg_BLInputFile,     string(""), "Base layer rec YUV input file name")
    631 #if AVC_SYNTAX
    632   ("InputBLSyntaxFile,-ibs",  cfg_BLSyntaxFile,     string(""), "Base layer syntax input file name")
    633 #endif
    634628#endif
    635629  ("EnableElRapB,-use-rap-b",  m_elRapSliceBEnabled, 0, "Set ILP over base-layer I picture to B picture (default is P picture)")
     
    10951089#endif
    10961090  m_pBitstreamFile = cfg_BitstreamFile.empty() ? NULL : strdup(cfg_BitstreamFile.c_str());
    1097 #if AVC_SYNTAX
    1098   m_BLSyntaxFile = cfg_BLSyntaxFile.empty() ? NULL : strdup(cfg_BLSyntaxFile.c_str());
    1099 #endif
    11001091#else //SVC_EXTENSION
    11011092  m_pchInputFile = cfg_InputFile.empty() ? NULL : strdup(cfg_InputFile.c_str());
     
    29332924  {
    29342925    printf("=== Layer %d settings === \n", layer);
    2935 #if AVC_SYNTAX
    2936     m_acLayerCfg[layer].xPrintParameter( layer );
    2937 #else
    29382926    m_acLayerCfg[layer].xPrintParameter();
    2939 #endif
    29402927    printf("\n");
    29412928  }
    29422929  printf("=== Common configuration settings === \n");
    29432930  printf("Bitstream      File          : %s\n", m_pBitstreamFile      );
    2944 #else
     2931#else //SVC_EXTENSION
    29452932  printf("Input          File          : %s\n", m_pchInputFile          );
    29462933  printf("Bitstream      File          : %s\n", m_pchBitstreamFile      );
     
    29482935  printf("Real     Format              : %dx%d %dHz\n", m_iSourceWidth - m_confLeft - m_confRight, m_iSourceHeight - m_confTop - m_confBottom, m_iFrameRate );
    29492936  printf("Internal Format              : %dx%d %dHz\n", m_iSourceWidth, m_iSourceHeight, m_iFrameRate );
    2950 #endif
     2937#endif //SVC_EXTENSION
    29512938  if (m_isField)
    29522939  {
Note: See TracChangeset for help on using the changeset viewer.