Changeset 1334 in SHVCSoftware for branches/SHM-dev/source/App
- Timestamp:
- 22 Jul 2015, 01:55:58 (9 years ago)
- Location:
- branches/SHM-dev/source/App/TAppEncoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.cpp
r1333 r1334 1201 1201 ("SummaryOutFilename", m_summaryOutFilename, string(), "Filename to use for producing summary output file. If empty, do not produce a file.") 1202 1202 ("SummaryPicFilenameBase", m_summaryPicFilenameBase, string(), "Base filename to use for producing summary picture output files. The actual filenames used will have I.txt, P.txt and B.txt appended. If empty, do not produce a file.") 1203 ("SummaryVerboseness", m_summaryVerboseness, 0u, "Specifies the level of the verboseness of the text output") 1203 1204 1204 1205 //Field coding parameters -
branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.h
r1333 r1334 443 443 std::string m_summaryOutFilename; ///< filename to use for producing summary output file. 444 444 std::string m_summaryPicFilenameBase; ///< Base filename to use for producing summary picture output files. The actual filenames used will have I.txt, P.txt and B.txt appended. 445 UInt m_summaryVerboseness; ///< Specifies the level of the verboseness of the text output. 445 446 446 447 #if LAYERS_NOT_PRESENT_SEI -
branches/SHM-dev/source/App/TAppEncoder/TAppEncTop.cpp
r1333 r1334 728 728 m_acTEncTop[layer].setSummaryOutFilename ( m_summaryOutFilename ); 729 729 m_acTEncTop[layer].setSummaryPicFilenameBase ( m_summaryPicFilenameBase ); 730 m_acTEncTop[layer].setSummaryVerboseness ( m_summaryVerboseness ); 730 731 731 732 if( layer > 0 ) … … 1111 1112 m_cTEncTop.setSummaryOutFilename ( m_summaryOutFilename ); 1112 1113 m_cTEncTop.setSummaryPicFilenameBase ( m_summaryPicFilenameBase ); 1114 m_cTEncTop.setSummaryVerboseness ( m_summaryVerboseness ); 1113 1115 } 1114 1116 #endif //SVC_EXTENSION … … 2437 2439 #endif 2438 2440 printf("Bytes written to file: %u (%.3f kbps)\n", m_totalBytes, 0.008 * m_totalBytes / time); 2439 #if VERBOSE_RATE 2440 printf("Bytes for SPS/PPS/Slice (Incl. Annex B): %u (%.3f kbps)\n", m_essentialBytes, 0.008 * m_essentialBytes / time); 2441 #endif 2441 if (m_summaryVerboseness > 0) 2442 { 2443 printf("Bytes for SPS/PPS/Slice (Incl. Annex B): %u (%.3f kbps)\n", m_essentialBytes, 0.008 * m_essentialBytes / time); 2444 } 2442 2445 } 2443 2446
Note: See TracChangeset for help on using the changeset viewer.