hvprofde.c
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:4k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #include "hvdebtim.h"
  36. #include "hvutilsw.h"
  37. //#include "speed.h"
  38. //#include "cpuid.h"
  39. #define NBPROFTIMERS 16
  40. struct CVvDebugTimer * pVvProf[NBPROFTIMERS]={0};
  41. unsigned long pVvProfCount[NBPROFTIMERS]={0};
  42. const char *cEventName[NBPROFTIMERS] = { /* Flawfinder: ignore */
  43. "YUV->RGB        ",
  44. "VvDecode        "
  45. };
  46. /* this is how to call it */
  47. /*
  48. if(!pVvProf[0]) {
  49. pVvProf[0] = newCVvDebugTimer();
  50. }//memory leak on destruction
  51. StartTime(pVvProf[0]);
  52. StopAndAccuTime(pVvProf[0]);
  53.  */
  54. #define AWANKAID 1
  55. /*
  56. //S32 vvProf_nDisplayedFrames=0;//OK
  57. S32 vvProf_nEncodedFrames=0;//OK
  58. S32 vvProf_nEnc01Width=0;//OK
  59. S32 vvProf_nEnc01Height=0;//OK
  60. S32 vvProf_nDisWidth=0;//OK
  61. S32 vvProf_nDisHeight=0;//OK
  62. S32 vvProf_nBitrate=0;//OK
  63. S32 vvProf_nDuration=0;
  64. S32 vvProf_AudioDuration=0;//OK
  65. */
  66. S32 vvProf_mcfunc[4][3];
  67. extern void vvlogend();
  68. extern void vvlog(U8 eventowner, U32 event, char *format, ...);
  69. void  GetLogShutDownAllAccuTimes(void)
  70. {
  71. double ptime;
  72. S32 ii=0;
  73. double dTimePerFrame;
  74. int nFrames;
  75. double dDecodingTime=0.;
  76. double dPercentOfEncoding;
  77. /*
  78. U32 nProcessorSpeed;
  79. short nProcessor;
  80. */
  81. nFrames = pVvProfCount[0];
  82. vvlog(AWANKAID, 0xf400 | ii, "%s t t %dn", "Col Conv Frames  ", nFrames);  ii++;
  83. vvlog(AWANKAID, 0xf400 | ii, "%s t t %dn", "DecodedFrames    ", pVvProfCount[1]);  ii++;
  84. // get processor type and speed
  85. // CPUID
  86. /*
  87. nProcessor = wincpuid();
  88. nProcessorSpeed = cpurawspeed(0);
  89. vvlog(AWANKAID, 0xf300 | ii, "%s t t %dn", "Processor      ", nProcessor);  ii++;
  90. vvlog(AWANKAID, 0xf300 | ii, "%s t t %.0lfn", "CPUSpeed       ", (double) nProcessorSpeed);  ii++;
  91. */
  92. //display all frame dependent times
  93. GetAccuTime(pVvProf[1], &ptime);
  94. dDecodingTime = (nFrames) ? (ptime/nFrames) : 0.;
  95. for(ii=0; ii<NBPROFTIMERS; ii++) {
  96. if(pVvProf[ii]) {
  97. GetAccuTime(pVvProf[ii], &ptime);
  98. dTimePerFrame = (pVvProfCount[ii]) ? (ptime/pVvProfCount[ii]) : 0.;
  99. dPercentOfEncoding = (dDecodingTime) ? (dTimePerFrame/dDecodingTime) : 0.;
  100. vvlog(AWANKAID, 0xf400 | ii, 
  101. "%s t %.0lft%6.2lft%6.2lfn", 
  102. cEventName[ii], 
  103. ptime, dTimePerFrame, 100*dPercentOfEncoding);
  104. }
  105. }
  106. for(ii=0; ii<NBPROFTIMERS; ii++) {
  107. if(pVvProf[ii]) {
  108. free(pVvProf[ii]);
  109. }
  110. pVvProf[ii] = 0;
  111. pVvProfCount[ii] = 0;
  112. }
  113. //memset(vvProf_mcfunc, 0, sizeof(vvProf_mcfunc));
  114. vvlogend();
  115. /* reset */
  116. /*
  117. vvProf_nEncodedFrames=0;//OK
  118. vvProf_nEnc01Width=0;//OK
  119. vvProf_nEnc01Height=0;//OK
  120. vvProf_nDisWidth=0;//OK
  121. vvProf_nDisHeight=0;//OK
  122. vvProf_nBitrate=0;//OK
  123. vvProf_nDuration=0;
  124. vvProf_AudioDuration=0;//OK
  125. */
  126. }