block.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:8k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*****************************************************************************
  2.  *
  3.  * This program is free software ; you can redistribute it and/or modify
  4.  * it under the terms of the GNU General Public License as published by
  5.  * the Free Software Foundation; either version 2 of the License, or
  6.  * (at your option) any later version.
  7.  *
  8.  * This program is distributed in the hope that it will be useful,
  9.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11.  * GNU General Public License for more details.
  12.  *
  13.  * You should have received a copy of the GNU General Public License
  14.  * along with this program; if not, write to the Free Software
  15.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  16.  *
  17.  * $Id: block.h 327 2005-11-04 07:09:17Z picard $
  18.  *
  19.  * The Core Pocket Media Player
  20.  * Copyright (c) 2004-2005 Gabor Kovacs
  21.  *
  22.  ****************************************************************************/
  23. #if defined(HALF)
  24. #define Block4x4 IDCT_Block4x4
  25. #define MV_X(v) ((v<<16)>>18)
  26. #define MV_Y(v) (v>>18)
  27. #define MV_SUB(v) (v&3)+((v>>14)&12)
  28. #define AddBlock8x8 AddBlock4x4
  29. #define CopyBlock CopyBlock4x4
  30. #elif !defined(SWAPXY)
  31. #define Block4x8 IDCT_Block4x8
  32. #define Block8x8 IDCT_Block8x8
  33. #define MV_X(v) ((v<<16)>>17)
  34. #define MV_Y(v) (v>>17)
  35. #define MV_SUB(v) (v&1)+((v>>15)&2)
  36. #else
  37. #define Block4x8 IDCT_Block4x8Swap
  38. #define Block8x8 IDCT_Block8x8Swap
  39. #define MV_X(v) (v>>17)
  40. #define MV_Y(v) ((v<<16)>>17)
  41. #define MV_SUB(v) ((v<<1)&2)+((v>>16)&1)
  42. #endif
  43. void Intra8x8(softidct* p,idct_block_t *Block,int Length,int ScanType)
  44. {
  45. Statistics(Block,Length,ScanType,0);
  46. #ifdef QUARTER
  47. IDCT_Block2x2(Block,p->DstPtr,p->CurrPitch,NULL);
  48. #elif defined(HALF)
  49. Block4x4(Block,p->DstPtr,p->CurrPitch,NULL);
  50. #else
  51. #ifdef SWAP8X4
  52. if (ScanType!=IDCTSCAN_ALT_VERT && (Length < 11 || (Length<20 && Block[32]==0)))
  53. Block4x8(Block,p->DstPtr,p->CurrPitch,NULL);
  54. #else
  55. if (ScanType!=IDCTSCAN_ALT_HORI && Length < 15)
  56. Block4x8(Block,p->DstPtr,p->CurrPitch,NULL);
  57. #endif
  58. else
  59. Block8x8(Block,p->DstPtr,p->CurrPitch,NULL);
  60. #endif
  61. EMMS();
  62. IncPtr(p,0,0);
  63. }
  64. #if !defined(MIPS64) && !defined(QUARTER)
  65. void Inter8x8BackFwd(softidct* p,idct_block_t *Block,int Length)
  66. {
  67. uint8_t* Ptr;
  68. int MV;
  69. if (Length)
  70. {
  71. // mcomp and idct (using tmp buffer)
  72. Statistics(Block,Length,0,2);
  73. if (p->MVBack)
  74. {
  75. MV = *(p->MVBack++);
  76. Ptr = p->RefPtr[0] + MV_X(MV) + p->CurrPitch * MV_Y(MV);
  77. if (Ptr >= p->RefMin[0] && Ptr < p->RefMax[0])
  78. p->CopyBlock[MV_SUB(MV)](Ptr,p->Tmp,p->CurrPitch,8);
  79. if (p->MVFwd)
  80. {
  81. MV = *(p->MVFwd++);
  82. Ptr = p->RefPtr[1] + MV_X(MV) + p->CurrPitch * MV_Y(MV);
  83. if (Ptr >= p->RefMin[1] && Ptr < p->RefMax[1])
  84. {
  85. #if defined(MIPS32)
  86. p->CopyBlock[MV_SUB(MV)](Ptr,p->Tmp+64,p->CurrPitch,8);
  87. AddBlock8x8(p->Tmp+64,p->Tmp,8,8);
  88. #else
  89. #ifdef HALF
  90. TableAddBlock4x4[MV_SUB(MV)](Ptr,p->Tmp,p->CurrPitch);
  91. #else
  92. p->AddBlock[MV_SUB(MV)](Ptr,p->Tmp,p->CurrPitch);
  93. #endif
  94. #endif
  95. }
  96. }
  97. }
  98. else
  99. if (p->MVFwd)
  100. {
  101. MV = *(p->MVFwd++);
  102. Ptr = p->RefPtr[1] + MV_X(MV) + p->CurrPitch * MV_Y(MV);
  103. if (Ptr >= p->RefMin[1] && Ptr < p->RefMax[1])
  104. p->CopyBlock[MV_SUB(MV)](Ptr,p->Tmp,p->CurrPitch,8);
  105. }
  106. #ifdef HALF
  107. if (Length == 1)
  108. IDCT_Const4x4((Block[0]+4) >> 3,p->DstPtr,p->CurrPitch,p->Tmp);
  109. else
  110. Block4x4(Block,p->DstPtr,p->CurrPitch,p->Tmp);
  111. #else
  112. if (Length == 1)
  113. IDCT_Const8x8((Block[0]+4) >> 3,p->DstPtr,p->CurrPitch,p->Tmp);
  114. #ifdef SWAP8X4
  115. else if (Length < 11 || (Length<20 && Block[32]==0))
  116. Block4x8(Block,p->DstPtr,p->CurrPitch,p->Tmp);
  117. #else
  118. else if (Length < 15)
  119. Block4x8(Block,p->DstPtr,p->CurrPitch,p->Tmp);
  120. #endif
  121. else
  122. Block8x8(Block,p->DstPtr,p->CurrPitch,p->Tmp);
  123. #endif
  124. }
  125. else 
  126. {
  127. // interpolate back and foward (using tmp buffer)
  128. if (p->MVBack && p->MVFwd)
  129. {
  130. MV = *(p->MVBack++);
  131. Ptr = p->RefPtr[0] + MV_X(MV) + p->CurrPitch * MV_Y(MV);
  132. if (Ptr >= p->RefMin[0] && Ptr < p->RefMax[0])
  133. p->CopyBlock[MV_SUB(MV)](Ptr,p->Tmp,p->CurrPitch,8);
  134. MV = *(p->MVFwd++);
  135. Ptr = p->RefPtr[1] + MV_X(MV) + p->CurrPitch * MV_Y(MV);
  136. if (Ptr >= p->RefMin[1] && Ptr < p->RefMax[1])
  137. {
  138. #if defined(MIPS32)
  139. p->CopyBlock[MV_SUB(MV)](Ptr,p->DstPtr,p->CurrPitch,p->CurrPitch);
  140. AddBlock8x8(p->Tmp,p->DstPtr,8,p->CurrPitch);
  141. #else
  142. #ifdef HALF
  143. TableAddBlock4x4[MV_SUB(MV)](Ptr,p->Tmp,p->CurrPitch);
  144. // copy Tmp to Dst
  145. CopyBlock4x4(p->Tmp,p->DstPtr,8,p->CurrPitch);
  146. #else
  147. p->AddBlock[MV_SUB(MV)](Ptr,p->Tmp,p->CurrPitch);
  148. // copy Tmp to Dst
  149. CopyBlock8x8(p->Tmp,p->DstPtr,8,p->CurrPitch);
  150. #endif
  151. #endif
  152. }
  153. }
  154. else
  155. if (p->MVBack)
  156. {
  157. MV = *(p->MVBack++);
  158. Ptr = p->RefPtr[0] + MV_X(MV) + p->CurrPitch * MV_Y(MV);
  159. if (Ptr >= p->RefMin[0] && Ptr < p->RefMax[0])
  160. p->CopyBlock[MV_SUB(MV)](Ptr,p->DstPtr,p->CurrPitch,p->CurrPitch);
  161. }
  162. else
  163. if (p->MVFwd)
  164. {
  165. MV = *(p->MVFwd++);
  166. Ptr = p->RefPtr[1] + MV_X(MV) + p->CurrPitch * MV_Y(MV);
  167. if (Ptr >= p->RefMin[1] && Ptr < p->RefMax[1])
  168. p->CopyBlock[MV_SUB(MV)](Ptr,p->DstPtr,p->CurrPitch,p->CurrPitch);
  169. }
  170. }
  171. EMMS();
  172. IncPtr(p,1,1);
  173. }
  174. void Inter8x8Back(softidct* p,idct_block_t *Block,int Length)
  175. {
  176. uint8_t* Ptr;
  177. int MV;
  178. if (Length)
  179. {
  180. // mcomp and idct (using tmp buffer)
  181. MV = *(p->MVBack++);
  182. Ptr = p->RefPtr[0] + MV_X(MV) + p->CurrPitch * MV_Y(MV);
  183. if (Ptr >= p->RefMin[0] && Ptr < p->RefMax[0])
  184. p->CopyBlock[MV_SUB(MV)](Ptr,p->Tmp,p->CurrPitch,8);
  185. Statistics(Block,Length,0,1);
  186. #ifdef HALF
  187. if (Length == 1)
  188. IDCT_Const4x4((Block[0]+4) >> 3,p->DstPtr,p->CurrPitch,p->Tmp);
  189. else
  190. Block4x4(Block,p->DstPtr,p->CurrPitch,p->Tmp);
  191. #else
  192. if (Length == 1)
  193. IDCT_Const8x8((Block[0]+4) >> 3,p->DstPtr,p->CurrPitch,p->Tmp);
  194. #ifdef SWAP8X4
  195. else if (Length < 11 || (Length<20 && Block[32]==0))
  196. Block4x8(Block,p->DstPtr,p->CurrPitch,p->Tmp);
  197. #else
  198. else if (Length < 15 || (Length<26 && ((uint32_t*)Block)[2]==0 && ((uint32_t*)Block)[6]==0))
  199. Block4x8(Block,p->DstPtr,p->CurrPitch,p->Tmp);
  200. #endif
  201. else
  202. Block8x8(Block,p->DstPtr,p->CurrPitch,p->Tmp);
  203. #endif
  204. }
  205. else 
  206. {
  207. // only back mcomp
  208. MV = *(p->MVBack++);
  209. Ptr = p->RefPtr[0] + MV_X(MV) + p->CurrPitch * MV_Y(MV);
  210. if (Ptr >= p->RefMin[0] && Ptr < p->RefMax[0])
  211. p->CopyBlock[MV_SUB(MV)](Ptr,p->DstPtr,p->CurrPitch,p->CurrPitch);
  212. }
  213. EMMS();
  214. IncPtr(p,1,0);
  215. }
  216. #if !defined(SWAPXY) && !defined(HALF)
  217. void Inter8x8QPEL(softidct* p,idct_block_t *Block,int Length)
  218. {
  219. if (Length)
  220. {
  221. CopyBlock8x8(p->DstPtr,p->Tmp,p->CurrPitch,8); //todo: find better solution...
  222. if (Length == 1)
  223. IDCT_Const8x8((Block[0]+4) >> 3,p->DstPtr,p->CurrPitch,p->Tmp);
  224. else if (Length < 15 || (Length<26 && ((uint32_t*)Block)[2]==0 && ((uint32_t*)Block)[6]==0))
  225. IDCT_Block4x8(Block,p->DstPtr,p->CurrPitch,p->Tmp);
  226. else
  227. IDCT_Block8x8(Block,p->DstPtr,p->CurrPitch,p->Tmp);
  228. }
  229. EMMS();
  230. if (*p->Ptr & 1)
  231. p->IDCT.Inter8x8 = p->inter8x8uv;
  232. IncPtr(p,1,1);
  233. }
  234. void Inter8x8GMC(softidct* p,idct_block_t *Block,int Length)
  235. {
  236. if (Length)
  237. {
  238. p->DrawGMC(p,p->Tmp,8);
  239. if (Length == 1)
  240. IDCT_Const8x8((Block[0]+4) >> 3,p->DstPtr,p->CurrPitch,p->Tmp);
  241. else if (Length < 15 || (Length<26 && ((uint32_t*)Block)[2]==0 && ((uint32_t*)Block)[6]==0))
  242. IDCT_Block4x8(Block,p->DstPtr,p->CurrPitch,p->Tmp);
  243. else
  244. IDCT_Block8x8(Block,p->DstPtr,p->CurrPitch,p->Tmp);
  245. }
  246. else
  247. p->DrawGMC(p,p->DstPtr,p->CurrPitch);
  248. EMMS();
  249. IncPtr(p,0,0);
  250. }
  251. #endif
  252. #endif
  253. #undef MV_X
  254. #undef MV_Y
  255. #undef MV_SUB
  256. #undef Block4x8
  257. #undef Block8x8
  258. #undef AddBlock8x8
  259. #undef CopyBlock