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.

325 lines
12KB

  1. /*
  2. * XVideo Motion Compensation
  3. * Copyright (c) 2003 Ivan Kalvachev
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include <limits.h>
  22. #include "avcodec.h"
  23. #include "dsputil.h"
  24. #include "mpegvideo.h"
  25. #undef NDEBUG
  26. #include <assert.h>
  27. #include "xvmc.h"
  28. #include "xvmc_internal.h"
  29. /**
  30. * Initializes the block field of the MpegEncContext pointer passed as
  31. * parameter after making sure that the data is not corrupted.
  32. * In order to implement something like direct rendering instead of decoding
  33. * coefficients in s->blocks and then copying them, copy them directly
  34. * into the data_blocks array provided by xvmc.
  35. */
  36. void ff_xvmc_init_block(MpegEncContext *s)
  37. {
  38. struct xvmc_pix_fmt *render = (struct xvmc_pix_fmt*)s->current_picture.data[2];
  39. assert(render && render->xvmc_id == AV_XVMC_ID);
  40. s->block = (DCTELEM *)(render->data_blocks + render->next_free_data_block_num * 64);
  41. }
  42. /**
  43. * Fill individual block pointers, so there are no gaps in the data_block array
  44. * in case not all blocks in MB are coded.
  45. */
  46. void ff_xvmc_pack_pblocks(MpegEncContext *s, int cbp)
  47. {
  48. int i, j = 0;
  49. const int mb_block_count = 4 + (1 << s->chroma_format);
  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. cbp+=cbp;
  57. }
  58. }
  59. /**
  60. * Find and store the surfaces that are used as reference frames.
  61. * This function should be called for every new field and/or frame.
  62. * It should be safe to call the function a few times for the same field.
  63. */
  64. int ff_xvmc_field_start(MpegEncContext*s, AVCodecContext *avctx)
  65. {
  66. struct xvmc_pix_fmt *last, *next, *render = (struct xvmc_pix_fmt*)s->current_picture.data[2];
  67. const int mb_block_count = 4 + (1 << s->chroma_format);
  68. assert(avctx);
  69. if (!render || render->xvmc_id != AV_XVMC_ID ||
  70. !render->data_blocks || !render->mv_blocks) {
  71. av_log(avctx, AV_LOG_ERROR,
  72. "Render token doesn't look as expected.\n");
  73. return -1; // make sure that this is a render packet
  74. }
  75. if (render->filled_mv_blocks_num) {
  76. av_log(avctx, AV_LOG_ERROR,
  77. "Rendering surface contains %i unprocessed blocks.\n",
  78. render->filled_mv_blocks_num);
  79. return -1;
  80. }
  81. if (render->total_number_of_mv_blocks < 1 ||
  82. render->total_number_of_data_blocks < mb_block_count) {
  83. av_log(avctx, AV_LOG_ERROR,
  84. "Rendering surface doesn't provide enough block structures to work with.\n");
  85. return -1;
  86. }
  87. render->picture_structure = s->picture_structure;
  88. render->flags = s->first_field ? 0 : XVMC_SECOND_FIELD;
  89. render->p_future_surface = NULL;
  90. render->p_past_surface = NULL;
  91. switch(s->pict_type) {
  92. case FF_I_TYPE:
  93. return 0; // no prediction from other frames
  94. case FF_B_TYPE:
  95. next = (struct xvmc_pix_fmt*)s->next_picture.data[2];
  96. if (!next)
  97. return -1;
  98. if (next->xvmc_id != AV_XVMC_ID)
  99. return -1;
  100. render->p_future_surface = next->p_surface;
  101. // no return here, going to set forward prediction
  102. case FF_P_TYPE:
  103. last = (struct xvmc_pix_fmt*)s->last_picture.data[2];
  104. if (!last)
  105. last = render; // predict second field from the first
  106. if (last->xvmc_id != AV_XVMC_ID)
  107. return -1;
  108. render->p_past_surface = last->p_surface;
  109. return 0;
  110. }
  111. return -1;
  112. }
  113. /**
  114. * Complete frame/field rendering by passing any remaining blocks.
  115. * Normally ff_draw_horiz_band() is called for each slice, however,
  116. * some leftover blocks, for example from error_resilience(), may remain.
  117. * It should be safe to call the function a few times for the same field.
  118. */
  119. void ff_xvmc_field_end(MpegEncContext *s)
  120. {
  121. struct xvmc_pix_fmt *render = (struct xvmc_pix_fmt*)s->current_picture.data[2];
  122. assert(render);
  123. if (render->filled_mv_blocks_num > 0)
  124. ff_draw_horiz_band(s, 0, 0);
  125. }
  126. /**
  127. * Synthesize the data needed by XvMC to render one macroblock of data.
  128. * Fill all relevant fields, if necessary do IDCT.
  129. */
  130. void ff_xvmc_decode_mb(MpegEncContext *s)
  131. {
  132. XvMCMacroBlock *mv_block;
  133. struct xvmc_pix_fmt *render;
  134. int i, cbp, blocks_per_mb;
  135. const int mb_xy = s->mb_y * s->mb_stride + s->mb_x;
  136. if (s->encoding) {
  137. av_log(s->avctx, AV_LOG_ERROR, "XVMC doesn't support encoding!!!\n");
  138. return;
  139. }
  140. // from MPV_decode_mb(), update DC predictors for P macroblocks
  141. if (!s->mb_intra) {
  142. s->last_dc[0] =
  143. s->last_dc[1] =
  144. s->last_dc[2] = 128 << s->intra_dc_precision;
  145. }
  146. // MC doesn't skip blocks
  147. s->mb_skipped = 0;
  148. // Do I need to export quant when I could not perform postprocessing?
  149. // Anyway, it doesn't hurt.
  150. s->current_picture.qscale_table[mb_xy] = s->qscale;
  151. // start of XVMC-specific code
  152. render = (struct xvmc_pix_fmt*)s->current_picture.data[2];
  153. assert(render);
  154. assert(render->xvmc_id == AV_XVMC_ID);
  155. assert(render->mv_blocks);
  156. // take the next free macroblock
  157. mv_block = &render->mv_blocks[render->start_mv_blocks_num +
  158. render->filled_mv_blocks_num];
  159. mv_block->x = s->mb_x;
  160. mv_block->y = s->mb_y;
  161. mv_block->dct_type = s->interlaced_dct; // XVMC_DCT_TYPE_FRAME/FIELD;
  162. if (s->mb_intra) {
  163. mv_block->macroblock_type = XVMC_MB_TYPE_INTRA; // no MC, all done
  164. } else {
  165. mv_block->macroblock_type = XVMC_MB_TYPE_PATTERN;
  166. if (s->mv_dir & MV_DIR_FORWARD) {
  167. mv_block->macroblock_type |= XVMC_MB_TYPE_MOTION_FORWARD;
  168. // PMV[n][dir][xy] = mv[dir][n][xy]
  169. mv_block->PMV[0][0][0] = s->mv[0][0][0];
  170. mv_block->PMV[0][0][1] = s->mv[0][0][1];
  171. mv_block->PMV[1][0][0] = s->mv[0][1][0];
  172. mv_block->PMV[1][0][1] = s->mv[0][1][1];
  173. }
  174. if (s->mv_dir & MV_DIR_BACKWARD) {
  175. mv_block->macroblock_type |= XVMC_MB_TYPE_MOTION_BACKWARD;
  176. mv_block->PMV[0][1][0] = s->mv[1][0][0];
  177. mv_block->PMV[0][1][1] = s->mv[1][0][1];
  178. mv_block->PMV[1][1][0] = s->mv[1][1][0];
  179. mv_block->PMV[1][1][1] = s->mv[1][1][1];
  180. }
  181. switch(s->mv_type) {
  182. case MV_TYPE_16X16:
  183. mv_block->motion_type = XVMC_PREDICTION_FRAME;
  184. break;
  185. case MV_TYPE_16X8:
  186. mv_block->motion_type = XVMC_PREDICTION_16x8;
  187. break;
  188. case MV_TYPE_FIELD:
  189. mv_block->motion_type = XVMC_PREDICTION_FIELD;
  190. if (s->picture_structure == PICT_FRAME) {
  191. mv_block->PMV[0][0][1] <<= 1;
  192. mv_block->PMV[1][0][1] <<= 1;
  193. mv_block->PMV[0][1][1] <<= 1;
  194. mv_block->PMV[1][1][1] <<= 1;
  195. }
  196. break;
  197. case MV_TYPE_DMV:
  198. mv_block->motion_type = XVMC_PREDICTION_DUAL_PRIME;
  199. if (s->picture_structure == PICT_FRAME) {
  200. mv_block->PMV[0][0][0] = s->mv[0][0][0]; // top from top
  201. mv_block->PMV[0][0][1] = s->mv[0][0][1] << 1;
  202. mv_block->PMV[0][1][0] = s->mv[0][0][0]; // bottom from bottom
  203. mv_block->PMV[0][1][1] = s->mv[0][0][1] << 1;
  204. mv_block->PMV[1][0][0] = s->mv[0][2][0]; // dmv00, top from bottom
  205. mv_block->PMV[1][0][1] = s->mv[0][2][1] << 1; // dmv01
  206. mv_block->PMV[1][1][0] = s->mv[0][3][0]; // dmv10, bottom from top
  207. mv_block->PMV[1][1][1] = s->mv[0][3][1] << 1; // dmv11
  208. } else {
  209. mv_block->PMV[0][1][0] = s->mv[0][2][0]; // dmv00
  210. mv_block->PMV[0][1][1] = s->mv[0][2][1]; // dmv01
  211. }
  212. break;
  213. default:
  214. assert(0);
  215. }
  216. mv_block->motion_vertical_field_select = 0;
  217. // set correct field references
  218. if (s->mv_type == MV_TYPE_FIELD || s->mv_type == MV_TYPE_16X8) {
  219. mv_block->motion_vertical_field_select |= s->field_select[0][0];
  220. mv_block->motion_vertical_field_select |= s->field_select[1][0] << 1;
  221. mv_block->motion_vertical_field_select |= s->field_select[0][1] << 2;
  222. mv_block->motion_vertical_field_select |= s->field_select[1][1] << 3;
  223. }
  224. } // !intra
  225. // time to handle data blocks
  226. mv_block->index = render->next_free_data_block_num;
  227. blocks_per_mb = 6;
  228. if (s->chroma_format >= 2) {
  229. blocks_per_mb = 4 + (1 << s->chroma_format);
  230. }
  231. // calculate cbp
  232. cbp = 0;
  233. for (i = 0; i < blocks_per_mb; i++) {
  234. cbp += cbp;
  235. if (s->block_last_index[i] >= 0)
  236. cbp++;
  237. }
  238. if (s->flags & CODEC_FLAG_GRAY) {
  239. if (s->mb_intra) { // intra frames are always full chroma blocks
  240. for (i = 4; i < blocks_per_mb; i++) {
  241. memset(s->pblocks[i], 0, sizeof(short)*64); // so we need to clear them
  242. if (!render->unsigned_intra)
  243. s->pblocks[i][0] = 1 << 10;
  244. }
  245. } else {
  246. cbp &= 0xf << (blocks_per_mb - 4);
  247. blocks_per_mb = 4; // luminance blocks only
  248. }
  249. }
  250. mv_block->coded_block_pattern = cbp;
  251. if (cbp == 0)
  252. mv_block->macroblock_type &= ~XVMC_MB_TYPE_PATTERN;
  253. for (i = 0; i < blocks_per_mb; i++) {
  254. if (s->block_last_index[i] >= 0) {
  255. // I do not have unsigned_intra MOCO to test, hope it is OK.
  256. if (s->mb_intra && (render->idct || (!render->idct && !render->unsigned_intra)))
  257. s->pblocks[i][0] -= 1 << 10;
  258. if (!render->idct) {
  259. s->dsp.idct(s->pblocks[i]);
  260. /* It is unclear if MC hardware requires pixel diff values to be
  261. * in the range [-255;255]. TODO: Clipping if such hardware is
  262. * ever found. As of now it would only be an unnecessary
  263. * slowdown. */
  264. }
  265. // copy blocks only if the codec doesn't support pblocks reordering
  266. if (s->avctx->xvmc_acceleration == 1) {
  267. memcpy(&render->data_blocks[render->next_free_data_block_num*64],
  268. s->pblocks[i], sizeof(short)*64);
  269. }
  270. render->next_free_data_block_num++;
  271. }
  272. }
  273. render->filled_mv_blocks_num++;
  274. assert(render->filled_mv_blocks_num <= render->total_number_of_mv_blocks);
  275. assert(render->next_free_data_block_num <= render->total_number_of_data_blocks);
  276. /* The above conditions should not be able to fail as long as this function
  277. * is used and the following 'if ()' automatically calls a callback to free
  278. * blocks. */
  279. if (render->filled_mv_blocks_num == render->total_number_of_mv_blocks)
  280. ff_draw_horiz_band(s, 0, 0);
  281. }