我复制了互联网的代码源,它有一个恒定的“单位”。这个常数的值是多少?我正在寻找但没有找到。
见http://graph-studio-next.googlecode.com/svn-history/r169/trunk/baseclasses/pullpin.cpp
m_tDuration = llTotal * UNITS;
我复制了互联网的代码源,它有一个恒定的“单位”。这个常数的值是多少?我正在寻找但没有找到。
见http://graph-studio-next.googlecode.com/svn-history/r169/trunk/baseclasses/pullpin.cpp
m_tDuration = llTotal * UNITS;
根据:http ://graph-studio-next.googlecode.com/svn/!svn/bc/169/trunk/baseclasses/reftime.h :
const LONGLONG NANOSECONDS = (1000000000); // 10 ^ 9
const LONGLONG UNITS = (NANOSECONDS / 100); // 10 ^ 7
UNITS
未在您提供的源文件中定义。您可以在以下位置查找它:
streams.h
,pullpin.h
和dxmperf.h
, ifDXMPERF
在编译期间或由之前包含的文件定义。UNITS
在编译器的命令行中定义为编译时常量。