Changeset 1412 in 3DVCSoftware for branches/HTM-16.2-dev/source/App/TAppEncoder/encmain.cpp
- Timestamp:
- 12 Apr 2018, 11:12:21 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-16.2-dev/source/App/TAppEncoder/encmain.cpp
r1405 r1412 4 4 * granted under this license. 5 5 * 6 * Copyright (c) 2010-201 6, ITU/ISO/IEC6 * Copyright (c) 2010-2017, ITU/ISO/IEC 7 7 * All rights reserved. 8 8 * … … 57 57 fprintf( stdout, "\n" ); 58 58 #if NH_MV 59 fprintf( stdout, "3D-HTM Software: Encoder Version [%s] based on HM Version [%s]", NV_VERSION, HM_VERSION ); 59 #if NH_3D 60 const char* hevcExt = "3D"; 61 #else 62 const char* hevcExt = "MV"; 63 #endif 64 fprintf( stdout, "HTM Software: Encoder Version [%s][%s] based on HM Version [%s]", NV_VERSION, hevcExt , HM_VERSION); 60 65 #else 61 66 fprintf( stdout, "HM software: Encoder Version [%s] (including RExt)", NV_VERSION ); … … 65 70 fprintf( stdout, NVM_BITS ); 66 71 fprintf( stdout, "\n\n" ); 67 72 #if NH_MV 73 fprintf( stdout, "Use the HEVC_EXT define to select between MV- and 3D-HEVC. \n\n" ); 74 #endif 68 75 // create application encoder class 69 76 cTAppEncTop.create();
Note: See TracChangeset for help on using the changeset viewer.