You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

317 lines
11KB

  1. /*
  2. * XVideo Motion Compensation
  3. * Copyright (c) 2003 Ivan Kalvachev
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. #include <limits.h>
  20. //avcodec include
  21. #include "avcodec.h"
  22. #include "dsputil.h"
  23. #include "mpegvideo.h"
  24. #undef NDEBUG
  25. #include <assert.h>
  26. #ifdef USE_FASTMEMCPY
  27. #include "fastmemcpy.h"
  28. #endif
  29. #ifdef HAVE_XVMC
  30. //X11 includes are in the xvmc_render.h
  31. //by replacing it with none-X one
  32. //XvMC emulation could be performed
  33. #include "xvmc_render.h"
  34. //#include "xvmc_debug.h"
  35. //set s->block
  36. inline void XVMC_init_block(MpegEncContext *s){
  37. xvmc_render_state_t * render;
  38. render = (xvmc_render_state_t*)s->current_picture.data[2];
  39. assert(render != NULL);
  40. if( (render == NULL) || (render->magic != MP_XVMC_RENDER_MAGIC) ){
  41. assert(0);
  42. return;//make sure that this is render packet
  43. }
  44. s->block =(DCTELEM *)(render->data_blocks+(render->next_free_data_block_num)*64);
  45. }
  46. void XVMC_pack_pblocks(MpegEncContext *s, int cbp){
  47. int i,j;
  48. const int mb_block_count = 4+(1<<s->chroma_format);
  49. j=0;
  50. cbp<<= 12-mb_block_count;
  51. for(i=0; i<mb_block_count; i++){
  52. if(cbp & (1<<11)) {
  53. s->pblocks[i] = (short *)(&s->block[(j++)]);
  54. }else{
  55. s->pblocks[i] = NULL;
  56. }
  57. cbp+=cbp;
  58. // printf("s->pblocks[%d]=%p ,s->block=%p cbp=%d\n",i,s->pblocks[i],s->block,cbp);
  59. }
  60. }
  61. //these functions should be called on every new field or/and frame
  62. //They should be safe if they are called few times for same field!
  63. int XVMC_field_start(MpegEncContext*s, AVCodecContext *avctx){
  64. xvmc_render_state_t * render,* last, * next;
  65. assert(avctx != NULL);
  66. render = (xvmc_render_state_t*)s->current_picture.data[2];
  67. assert(render != NULL);
  68. if( (render == NULL) || (render->magic != MP_XVMC_RENDER_MAGIC) )
  69. return -1;//make sure that this is render packet
  70. render->picture_structure = s->picture_structure;
  71. render->flags = (s->first_field)? 0: XVMC_SECOND_FIELD;
  72. //make sure that all data is drawn by XVMC_end_frame
  73. assert(render->filled_mv_blocks_num==0);
  74. render->p_future_surface = NULL;
  75. render->p_past_surface = NULL;
  76. switch(s->pict_type){
  77. case I_TYPE:
  78. return 0;// no prediction from other frames
  79. case B_TYPE:
  80. next = (xvmc_render_state_t*)s->next_picture.data[2];
  81. assert(next!=NULL);
  82. assert(next->state & MP_XVMC_STATE_PREDICTION);
  83. if(next == NULL) return -1;
  84. if(next->magic != MP_XVMC_RENDER_MAGIC) return -1;
  85. render->p_future_surface = next->p_surface;
  86. //no return here, going to set forward prediction
  87. case P_TYPE:
  88. last = (xvmc_render_state_t*)s->last_picture.data[2];
  89. if(last == NULL)// && !s->first_field)
  90. last = render;//predict second field from the first
  91. if(last->magic != MP_XVMC_RENDER_MAGIC) return -1;
  92. assert(last->state & MP_XVMC_STATE_PREDICTION);
  93. render->p_past_surface = last->p_surface;
  94. return 0;
  95. }
  96. return -1;
  97. }
  98. void XVMC_field_end(MpegEncContext *s){
  99. xvmc_render_state_t * render;
  100. render = (xvmc_render_state_t*)s->current_picture.data[2];
  101. assert(render != NULL);
  102. if(render->filled_mv_blocks_num > 0){
  103. // printf("xvmcvideo.c: rendering %d left blocks after last slice!!!\n",render->filled_mv_blocks_num );
  104. ff_draw_horiz_band(s,0,0);
  105. }
  106. }
  107. void XVMC_decode_mb(MpegEncContext *s){
  108. XvMCMacroBlock * mv_block;
  109. xvmc_render_state_t * render;
  110. int i,cbp,blocks_per_mb;
  111. const int mb_xy = s->mb_y * s->mb_stride + s->mb_x;
  112. if(s->encoding){
  113. av_log(s->avctx, AV_LOG_ERROR, "XVMC doesn't support encoding!!!\n");
  114. return -1;
  115. }
  116. //from MPV_decode_mb(),
  117. /* update DC predictors for P macroblocks */
  118. if (!s->mb_intra) {
  119. s->last_dc[0] =
  120. s->last_dc[1] =
  121. s->last_dc[2] = 128 << s->intra_dc_precision;
  122. }
  123. //MC doesn't skip blocks
  124. s->mb_skipped = 0;
  125. // do I need to export quant when I could not perform postprocessing?
  126. // anyway, it doesn't hurrt
  127. s->current_picture.qscale_table[mb_xy] = s->qscale;
  128. //START OF XVMC specific code
  129. render = (xvmc_render_state_t*)s->current_picture.data[2];
  130. assert(render!=NULL);
  131. assert(render->magic==MP_XVMC_RENDER_MAGIC);
  132. assert(render->mv_blocks);
  133. //take the next free macroblock
  134. mv_block = &render->mv_blocks[render->start_mv_blocks_num +
  135. render->filled_mv_blocks_num ];
  136. // memset(mv_block,0,sizeof(XvMCMacroBlock));
  137. mv_block->x = s->mb_x;
  138. mv_block->y = s->mb_y;
  139. mv_block->dct_type = s->interlaced_dct;//XVMC_DCT_TYPE_FRAME/FIELD;
  140. // mv_block->motion_type = 0; //zero to silense warnings
  141. if(s->mb_intra){
  142. mv_block->macroblock_type = XVMC_MB_TYPE_INTRA;//no MC, all done
  143. }else{
  144. mv_block->macroblock_type = XVMC_MB_TYPE_PATTERN;
  145. if(s->mv_dir & MV_DIR_FORWARD){
  146. mv_block->macroblock_type|= XVMC_MB_TYPE_MOTION_FORWARD;
  147. //pmv[n][dir][xy]=mv[dir][n][xy]
  148. mv_block->PMV[0][0][0] = s->mv[0][0][0];
  149. mv_block->PMV[0][0][1] = s->mv[0][0][1];
  150. mv_block->PMV[1][0][0] = s->mv[0][1][0];
  151. mv_block->PMV[1][0][1] = s->mv[0][1][1];
  152. }
  153. if(s->mv_dir & MV_DIR_BACKWARD){
  154. mv_block->macroblock_type|=XVMC_MB_TYPE_MOTION_BACKWARD;
  155. mv_block->PMV[0][1][0] = s->mv[1][0][0];
  156. mv_block->PMV[0][1][1] = s->mv[1][0][1];
  157. mv_block->PMV[1][1][0] = s->mv[1][1][0];
  158. mv_block->PMV[1][1][1] = s->mv[1][1][1];
  159. }
  160. switch(s->mv_type){
  161. case MV_TYPE_16X16:
  162. mv_block->motion_type = XVMC_PREDICTION_FRAME;
  163. break;
  164. case MV_TYPE_16X8:
  165. mv_block->motion_type = XVMC_PREDICTION_16x8;
  166. break;
  167. case MV_TYPE_FIELD:
  168. mv_block->motion_type = XVMC_PREDICTION_FIELD;
  169. if(s->picture_structure == PICT_FRAME){
  170. mv_block->PMV[0][0][1]<<=1;
  171. mv_block->PMV[1][0][1]<<=1;
  172. mv_block->PMV[0][1][1]<<=1;
  173. mv_block->PMV[1][1][1]<<=1;
  174. }
  175. break;
  176. case MV_TYPE_DMV:
  177. mv_block->motion_type = XVMC_PREDICTION_DUAL_PRIME;
  178. if(s->picture_structure == PICT_FRAME){
  179. mv_block->PMV[0][0][0] = s->mv[0][0][0];//top from top
  180. mv_block->PMV[0][0][1] = s->mv[0][0][1]<<1;
  181. mv_block->PMV[0][1][0] = s->mv[0][0][0];//bottom from bottom
  182. mv_block->PMV[0][1][1] = s->mv[0][0][1]<<1;
  183. mv_block->PMV[1][0][0] = s->mv[0][2][0];//dmv00, top from bottom
  184. mv_block->PMV[1][0][1] = s->mv[0][2][1]<<1;//dmv01
  185. mv_block->PMV[1][1][0] = s->mv[0][3][0];//dmv10, bottom from top
  186. mv_block->PMV[1][1][1] = s->mv[0][3][1]<<1;//dmv11
  187. }else{
  188. mv_block->PMV[0][1][0] = s->mv[0][2][0];//dmv00
  189. mv_block->PMV[0][1][1] = s->mv[0][2][1];//dmv01
  190. }
  191. break;
  192. default:
  193. assert(0);
  194. }
  195. mv_block->motion_vertical_field_select = 0;
  196. //set correct field referenses
  197. if(s->mv_type == MV_TYPE_FIELD || s->mv_type == MV_TYPE_16X8){
  198. if( s->field_select[0][0] ) mv_block->motion_vertical_field_select|=1;
  199. if( s->field_select[1][0] ) mv_block->motion_vertical_field_select|=2;
  200. if( s->field_select[0][1] ) mv_block->motion_vertical_field_select|=4;
  201. if( s->field_select[1][1] ) mv_block->motion_vertical_field_select|=8;
  202. }
  203. }//!intra
  204. //time to handle data blocks;
  205. mv_block->index = render->next_free_data_block_num;
  206. blocks_per_mb = 6;
  207. if( s->chroma_format >= 2){
  208. blocks_per_mb = 4 + (1 << (s->chroma_format));
  209. }
  210. // calculate cbp
  211. cbp = 0;
  212. for(i=0; i<blocks_per_mb; i++) {
  213. cbp+= cbp;
  214. if(s->block_last_index[i] >= 0)
  215. cbp++;
  216. }
  217. if(s->flags & CODEC_FLAG_GRAY){
  218. if(s->mb_intra){//intra frames are alwasy full chroma block
  219. for(i=4; i<blocks_per_mb; i++){
  220. memset(s->pblocks[i],0,sizeof(short)*8*8);//so we need to clear them
  221. if(!render->unsigned_intra)
  222. s->pblocks[i][0] = 1<<10;
  223. }
  224. }else{
  225. cbp&= 0xf << (blocks_per_mb - 4);
  226. blocks_per_mb = 4;//Luminance blocks only
  227. }
  228. }
  229. mv_block->coded_block_pattern = cbp;
  230. if(cbp == 0)
  231. mv_block->macroblock_type &= ~XVMC_MB_TYPE_PATTERN;
  232. for(i=0; i<blocks_per_mb; i++){
  233. if(s->block_last_index[i] >= 0){
  234. // i do not have unsigned_intra MOCO to test, hope it is OK
  235. if( (s->mb_intra) && ( render->idct || (!render->idct && !render->unsigned_intra)) )
  236. s->pblocks[i][0]-=1<<10;
  237. if(!render->idct){
  238. s->dsp.idct(s->pblocks[i]);
  239. //!!TODO!clip!!!
  240. }
  241. //copy blocks only if the codec doesn't support pblocks reordering
  242. if(s->avctx->xvmc_acceleration == 1){
  243. memcpy(&render->data_blocks[(render->next_free_data_block_num)*64],
  244. s->pblocks[i],sizeof(short)*8*8);
  245. }else{
  246. /* if(s->pblocks[i] != &render->data_blocks[
  247. (render->next_free_data_block_num)*64]){
  248. printf("ERROR mb(%d,%d) s->pblocks[i]=%p data_block[]=%p\n",
  249. s->mb_x,s->mb_y, s->pblocks[i],
  250. &render->data_blocks[(render->next_free_data_block_num)*64]);
  251. }*/
  252. }
  253. render->next_free_data_block_num++;
  254. }
  255. }
  256. render->filled_mv_blocks_num++;
  257. assert(render->filled_mv_blocks_num <= render->total_number_of_mv_blocks);
  258. assert(render->next_free_data_block_num <= render->total_number_of_data_blocks);
  259. if(render->filled_mv_blocks_num >= render->total_number_of_mv_blocks)
  260. ff_draw_horiz_band(s,0,0);
  261. // DumpRenderInfo(render);
  262. // DumpMBlockInfo(mv_block);
  263. }
  264. #endif