- Timestamp:
- Jan 16, 2017 9:14:53 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/EbmlWriter.cpp
r65281 r65307 20 20 #include <stack> 21 21 #include <iprt/asm.h> 22 #include <iprt/buildconfig.h> 22 23 #include <iprt/cdefs.h> 23 24 #include <iprt/err.h> … … 27 28 28 29 #include <VBox/log.h> 30 #include <VBox/version.h> 29 31 30 32 #include "EbmlWriter.h" … … 723 725 LogFunc(("Info @ %RU64\n", m_offSegInfoStart)); 724 726 725 char szVersion[64]; 726 RTStrPrintf(szVersion, sizeof(szVersion), "vpxenc%s", vpx_codec_version_str()); /** @todo Make this configurable? */ 727 char szMux[64]; 728 RTStrPrintf(szMux, sizeof(szMux), "vpxenc%s", vpx_codec_version_str()); 729 730 char szApp[64]; 731 RTStrPrintf(szApp, sizeof(szApp), VBOX_PRODUCT " %sr%u\n", VBOX_VERSION_STRING, RTBldCfgRevision()); 727 732 728 733 m_Ebml.subStart(Info) 729 734 .serializeUnsignedInteger(TimecodeScale, 1000000) 730 735 .serializeFloat(Segment_Duration, m_tsLastPtsMs + iFrameTime - m_tsInitialPtsMs) 731 .serializeString(MuxingApp, sz Version)732 .serializeString(WritingApp, sz Version)736 .serializeString(MuxingApp, szMux) 737 .serializeString(WritingApp, szApp) 733 738 .subEnd(Info); 734 739 }
Note:
See TracChangeset
for help on using the changeset viewer.