deintl.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
源码类别:

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. #ifndef DEINTL_H__
  36. #define DEINTL_H__
  37. #include "hxtypes.h"
  38. // color formats
  39. #define INTL_FORMAT_UNDEF 0
  40. #define INTL_FORMAT_RGB24 1
  41. #define INTL_FORMAT_I420 2
  42. // Deinterlace mode
  43. #define INTL_MODE int
  44. #define INTL_MODE_NONE 0
  45. #define INTL_MODE_ODD 1
  46. #define INTL_MODE_EVEN 2
  47. #define INTL_MODE_SMART 3
  48. #define INTL_MODE_FLIPFLOP 4
  49. #define INTL_MODE_SMART_AUTO 5
  50. // Deinterlace detection results
  51. #define INTL_STRONG_INTERLACE (2)
  52. #define INTL_WEAK_INTERLACE (1)
  53. #define INTL_NO_DETECTION (0)
  54. #define INTL_WEAK_PROGRESSIVE (-1)
  55. #define INTL_STRONG_PROGRESSIVE (-2)
  56. // line removal modes
  57. #define INTL_LINE_REMOVE_MEDIAN 0
  58. #define INTL_LINE_REMOVE_AVG 1
  59. #define INTL_LINE_REMOVE_DOWN 2
  60. #define INTL_LINE_REMOVE_UP 3
  61. // misc
  62. #ifdef TRUE
  63. #undef TRUE
  64. #endif
  65. #define TRUE 1
  66. #ifdef FALSE
  67. #undef FALSE
  68. #endif
  69. #define FALSE 0
  70. // deinterlace filter state
  71. typedef struct tag_T_DEINTL_STATE
  72. {
  73. int pels;
  74. int lines;
  75. int pitch;
  76. int format;
  77. unsigned int detection_measure;
  78. unsigned int commit_deinterlace;
  79. } T_DEINTL_STATE;
  80. // prototypes
  81. int
  82. InitDeinterlace(
  83. int pels, int lines, int pitch, 
  84. int format, 
  85. INTL_MODE mode, 
  86. T_DEINTL_STATE **state);
  87. int
  88. Deinterlace(
  89. unsigned char *frame, 
  90. unsigned char *prev_frame, 
  91. int pels, int lines, int pitch,
  92. int format,
  93. int first_frame, 
  94. INTL_MODE mode,
  95. T_DEINTL_STATE *state);
  96. BOOL
  97. IsContentInterlaced(T_DEINTL_STATE *state);
  98. void
  99. ResetDeinterlace (T_DEINTL_STATE *state);
  100. void
  101. FreeDeinterlace(T_DEINTL_STATE **state);
  102. #ifdef TIME_DEINTERLACE
  103. #include <windows.h>
  104. // Macros for timing
  105. // USE_CODEC_TIMER
  106. #if (defined _WIN32)
  107. #define USE_CODEC_TIMER 
  108. LARGE_INTEGER tick1,tick2,freq; 
  109. QueryPerformanceFrequency(&freq)
  110. #endif
  111. #if (defined _MACINTOSH)
  112. #define USE_CODEC_TIMER UnsignedWide tick1,tick2
  113. #endif
  114. #ifndef USE_CODEC_TIMER
  115. #define USE_CODEC_TIMER int tick1,tick2
  116. #endif
  117. // START_CODEC_TIMER
  118. #if (defined _WIN32)
  119. #define START_CODEC_TIMER QueryPerformanceCounter(&tick1)
  120. #endif
  121. #if (defined _MACINTOSH)
  122. #define START_CODEC_TIMER Microseconds(&tick1)
  123. #endif
  124. #ifndef START_CODEC_TIMER
  125. #define START_CODEC_TIMER tick1 = HX_GET_TICKCOUNT()
  126. #endif
  127. // STOP_CODEC_TIMER
  128. #if (defined _WIN32)
  129. #define STOP_CODEC_TIMER(d) 
  130. QueryPerformanceCounter(&tick2); 
  131. (d) = (1000.*((tick2.LowPart + 4294967296.0*tick2.HighPart)-(tick1.LowPart + 4294967296.0*tick1.HighPart))/ 
  132. (freq.LowPart + 4294967296.0*freq.HighPart))
  133. #endif
  134. #if (defined _MACINTOSH)
  135. #define STOP_CODEC_TIMER(d) 
  136. Microseconds(&tick2); 
  137. (d) = ((double)((tick2.lo + 4294967296.0*tick2.hi)-(tick1.lo + 4294967296.0*tick1.hi))/1000)
  138. #endif
  139. #ifndef STOP_CODEC_TIMER
  140. #define STOP_CODEC_TIMER(d) 
  141. tick2 = HX_GET_TICKCOUNT(); 
  142. (d) = tick2-tick1
  143. #endif
  144. #endif //TIME_DEINTERLACE
  145. #endif