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.

329 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 the macroblock 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->allocated_mv_blocks < 1 ||
  82. render->allocated_data_blocks < render->allocated_mv_blocks*mb_block_count ||
  83. render->start_mv_blocks_num >= render->allocated_mv_blocks ||
  84. render->next_free_data_block_num >
  85. render->allocated_data_blocks -
  86. mb_block_count*(render->allocated_mv_blocks-render->start_mv_blocks_num)) {
  87. av_log(avctx, AV_LOG_ERROR,
  88. "Rendering surface doesn't provide enough block structures to work with.\n");
  89. return -1;
  90. }
  91. render->picture_structure = s->picture_structure;
  92. render->flags = s->first_field ? 0 : XVMC_SECOND_FIELD;
  93. render->p_future_surface = NULL;
  94. render->p_past_surface = NULL;
  95. switch(s->pict_type) {
  96. case FF_I_TYPE:
  97. return 0; // no prediction from other frames
  98. case FF_B_TYPE:
  99. next = (struct xvmc_pix_fmt*)s->next_picture.data[2];
  100. if (!next)
  101. return -1;
  102. if (next->xvmc_id != AV_XVMC_ID)
  103. return -1;
  104. render->p_future_surface = next->p_surface;
  105. // no return here, going to set forward prediction
  106. case FF_P_TYPE:
  107. last = (struct xvmc_pix_fmt*)s->last_picture.data[2];
  108. if (!last)
  109. last = render; // predict second field from the first
  110. if (last->xvmc_id != AV_XVMC_ID)
  111. return -1;
  112. render->p_past_surface = last->p_surface;
  113. return 0;
  114. }
  115. return -1;
  116. }
  117. /**
  118. * Complete frame/field rendering by passing any remaining blocks.
  119. * Normally ff_draw_horiz_band() is called for each slice, however,
  120. * some leftover blocks, for example from error_resilience(), may remain.
  121. * It should be safe to call the function a few times for the same field.
  122. */
  123. void ff_xvmc_field_end(MpegEncContext *s)
  124. {
  125. struct xvmc_pix_fmt *render = (struct xvmc_pix_fmt*)s->current_picture.data[2];
  126. assert(render);
  127. if (render->filled_mv_blocks_num > 0)
  128. ff_draw_horiz_band(s, 0, 0);
  129. }
  130. /**
  131. * Synthesize the data needed by XvMC to render one macroblock of data.
  132. * Fill all relevant fields, if necessary do IDCT.
  133. */
  134. void ff_xvmc_decode_mb(MpegEncContext *s)
  135. {
  136. XvMCMacroBlock *mv_block;
  137. struct xvmc_pix_fmt *render;
  138. int i, cbp, blocks_per_mb;
  139. const int mb_xy = s->mb_y * s->mb_stride + s->mb_x;
  140. if (s->encoding) {
  141. av_log(s->avctx, AV_LOG_ERROR, "XVMC doesn't support encoding!!!\n");
  142. return;
  143. }
  144. // from MPV_decode_mb(), update DC predictors for P macroblocks
  145. if (!s->mb_intra) {
  146. s->last_dc[0] =
  147. s->last_dc[1] =
  148. s->last_dc[2] = 128 << s->intra_dc_precision;
  149. }
  150. // MC doesn't skip blocks
  151. s->mb_skipped = 0;
  152. // Do I need to export quant when I could not perform postprocessing?
  153. // Anyway, it doesn't hurt.
  154. s->current_picture.qscale_table[mb_xy] = s->qscale;
  155. // start of XVMC-specific code
  156. render = (struct xvmc_pix_fmt*)s->current_picture.data[2];
  157. assert(render);
  158. assert(render->xvmc_id == AV_XVMC_ID);
  159. assert(render->mv_blocks);
  160. // take the next free macroblock
  161. mv_block = &render->mv_blocks[render->start_mv_blocks_num +
  162. render->filled_mv_blocks_num];
  163. mv_block->x = s->mb_x;
  164. mv_block->y = s->mb_y;
  165. mv_block->dct_type = s->interlaced_dct; // XVMC_DCT_TYPE_FRAME/FIELD;
  166. if (s->mb_intra) {
  167. mv_block->macroblock_type = XVMC_MB_TYPE_INTRA; // no MC, all done
  168. } else {
  169. mv_block->macroblock_type = XVMC_MB_TYPE_PATTERN;
  170. if (s->mv_dir & MV_DIR_FORWARD) {
  171. mv_block->macroblock_type |= XVMC_MB_TYPE_MOTION_FORWARD;
  172. // PMV[n][dir][xy] = mv[dir][n][xy]
  173. mv_block->PMV[0][0][0] = s->mv[0][0][0];
  174. mv_block->PMV[0][0][1] = s->mv[0][0][1];
  175. mv_block->PMV[1][0][0] = s->mv[0][1][0];
  176. mv_block->PMV[1][0][1] = s->mv[0][1][1];
  177. }
  178. if (s->mv_dir & MV_DIR_BACKWARD) {
  179. mv_block->macroblock_type |= XVMC_MB_TYPE_MOTION_BACKWARD;
  180. mv_block->PMV[0][1][0] = s->mv[1][0][0];
  181. mv_block->PMV[0][1][1] = s->mv[1][0][1];
  182. mv_block->PMV[1][1][0] = s->mv[1][1][0];
  183. mv_block->PMV[1][1][1] = s->mv[1][1][1];
  184. }
  185. switch(s->mv_type) {
  186. case MV_TYPE_16X16:
  187. mv_block->motion_type = XVMC_PREDICTION_FRAME;
  188. break;
  189. case MV_TYPE_16X8:
  190. mv_block->motion_type = XVMC_PREDICTION_16x8;
  191. break;
  192. case MV_TYPE_FIELD:
  193. mv_block->motion_type = XVMC_PREDICTION_FIELD;
  194. if (s->picture_structure == PICT_FRAME) {
  195. mv_block->PMV[0][0][1] <<= 1;
  196. mv_block->PMV[1][0][1] <<= 1;
  197. mv_block->PMV[0][1][1] <<= 1;
  198. mv_block->PMV[1][1][1] <<= 1;
  199. }
  200. break;
  201. case MV_TYPE_DMV:
  202. mv_block->motion_type = XVMC_PREDICTION_DUAL_PRIME;
  203. if (s->picture_structure == PICT_FRAME) {
  204. mv_block->PMV[0][0][0] = s->mv[0][0][0]; // top from top
  205. mv_block->PMV[0][0][1] = s->mv[0][0][1] << 1;
  206. mv_block->PMV[0][1][0] = s->mv[0][0][0]; // bottom from bottom
  207. mv_block->PMV[0][1][1] = s->mv[0][0][1] << 1;
  208. mv_block->PMV[1][0][0] = s->mv[0][2][0]; // dmv00, top from bottom
  209. mv_block->PMV[1][0][1] = s->mv[0][2][1] << 1; // dmv01
  210. mv_block->PMV[1][1][0] = s->mv[0][3][0]; // dmv10, bottom from top
  211. mv_block->PMV[1][1][1] = s->mv[0][3][1] << 1; // dmv11
  212. } else {
  213. mv_block->PMV[0][1][0] = s->mv[0][2][0]; // dmv00
  214. mv_block->PMV[0][1][1] = s->mv[0][2][1]; // dmv01
  215. }
  216. break;
  217. default:
  218. assert(0);
  219. }
  220. mv_block->motion_vertical_field_select = 0;
  221. // set correct field references
  222. if (s->mv_type == MV_TYPE_FIELD || s->mv_type == MV_TYPE_16X8) {
  223. mv_block->motion_vertical_field_select |= s->field_select[0][0];
  224. mv_block->motion_vertical_field_select |= s->field_select[1][0] << 1;
  225. mv_block->motion_vertical_field_select |= s->field_select[0][1] << 2;
  226. mv_block->motion_vertical_field_select |= s->field_select[1][1] << 3;
  227. }
  228. } // !intra
  229. // time to handle data blocks
  230. mv_block->index = render->next_free_data_block_num;
  231. blocks_per_mb = 6;
  232. if (s->chroma_format >= 2) {
  233. blocks_per_mb = 4 + (1 << s->chroma_format);
  234. }
  235. // calculate cbp
  236. cbp = 0;
  237. for (i = 0; i < blocks_per_mb; i++) {
  238. cbp += cbp;
  239. if (s->block_last_index[i] >= 0)
  240. cbp++;
  241. }
  242. if (s->flags & CODEC_FLAG_GRAY) {
  243. if (s->mb_intra) { // intra frames are always full chroma blocks
  244. for (i = 4; i < blocks_per_mb; i++) {
  245. memset(s->pblocks[i], 0, sizeof(*s->pblocks[i])*64); // so we need to clear them
  246. if (!render->unsigned_intra)
  247. s->pblocks[i][0] = 1 << 10;
  248. }
  249. } else {
  250. cbp &= 0xf << (blocks_per_mb - 4);
  251. blocks_per_mb = 4; // luminance blocks only
  252. }
  253. }
  254. mv_block->coded_block_pattern = cbp;
  255. if (cbp == 0)
  256. mv_block->macroblock_type &= ~XVMC_MB_TYPE_PATTERN;
  257. for (i = 0; i < blocks_per_mb; i++) {
  258. if (s->block_last_index[i] >= 0) {
  259. // I do not have unsigned_intra MOCO to test, hope it is OK.
  260. if (s->mb_intra && (render->idct || (!render->idct && !render->unsigned_intra)))
  261. s->pblocks[i][0] -= 1 << 10;
  262. if (!render->idct) {
  263. s->dsp.idct(s->pblocks[i]);
  264. /* It is unclear if MC hardware requires pixel diff values to be
  265. * in the range [-255;255]. TODO: Clipping if such hardware is
  266. * ever found. As of now it would only be an unnecessary
  267. * slowdown. */
  268. }
  269. // copy blocks only if the codec doesn't support pblocks reordering
  270. if (s->avctx->xvmc_acceleration == 1) {
  271. memcpy(&render->data_blocks[render->next_free_data_block_num*64],
  272. s->pblocks[i], sizeof(*s->pblocks[i])*64);
  273. }
  274. render->next_free_data_block_num++;
  275. }
  276. }
  277. render->filled_mv_blocks_num++;
  278. assert(render->filled_mv_blocks_num <= render->allocated_mv_blocks);
  279. assert(render->next_free_data_block_num <= render->allocated_data_blocks);
  280. /* The above conditions should not be able to fail as long as this function
  281. * is used and the following 'if ()' automatically calls a callback to free
  282. * blocks. */
  283. if (render->filled_mv_blocks_num == render->allocated_mv_blocks)
  284. ff_draw_horiz_band(s, 0, 0);
  285. }