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.

376 lines
13KB

  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 <X11/extensions/XvMC.h>
  23. #include "avcodec.h"
  24. #include "mpegvideo.h"
  25. #undef NDEBUG
  26. #include <assert.h>
  27. #include "xvmc.h"
  28. #include "xvmc_internal.h"
  29. #include "version.h"
  30. /**
  31. * Initialize the block field of the MpegEncContext pointer passed as
  32. * parameter after making sure that the data is not corrupted.
  33. * In order to implement something like direct rendering instead of decoding
  34. * coefficients in s->blocks and then copying them, copy them directly
  35. * into the data_blocks array provided by xvmc.
  36. */
  37. void ff_xvmc_init_block(MpegEncContext *s)
  38. {
  39. struct xvmc_pix_fmt *render = (struct xvmc_pix_fmt*)s->current_picture.f.data[2];
  40. assert(render && render->xvmc_id == AV_XVMC_ID);
  41. s->block = (int16_t (*)[64])(render->data_blocks + render->next_free_data_block_num * 64);
  42. }
  43. static void exchange_uv(MpegEncContext *s)
  44. {
  45. int16_t (*tmp)[64];
  46. tmp = s->pblocks[4];
  47. s->pblocks[4] = s->pblocks[5];
  48. s->pblocks[5] = tmp;
  49. }
  50. /**
  51. * Fill individual block pointers, so there are no gaps in the data_block array
  52. * in case not all blocks in the macroblock are coded.
  53. */
  54. void ff_xvmc_pack_pblocks(MpegEncContext *s, int cbp)
  55. {
  56. int i, j = 0;
  57. const int mb_block_count = 4 + (1 << s->chroma_format);
  58. cbp <<= 12-mb_block_count;
  59. for (i = 0; i < mb_block_count; i++) {
  60. if (cbp & (1 << 11))
  61. s->pblocks[i] = &s->block[j++];
  62. else
  63. s->pblocks[i] = NULL;
  64. cbp += cbp;
  65. }
  66. if (s->swap_uv) {
  67. exchange_uv(s);
  68. }
  69. }
  70. /**
  71. * Find and store the surfaces that are used as reference frames.
  72. * This function should be called for every new field and/or frame.
  73. * It should be safe to call the function a few times for the same field.
  74. */
  75. static int ff_xvmc_field_start(AVCodecContext *avctx, const uint8_t *buf, uint32_t buf_size)
  76. {
  77. struct MpegEncContext *s = avctx->priv_data;
  78. struct xvmc_pix_fmt *last, *next, *render = (struct xvmc_pix_fmt*)s->current_picture.f.data[2];
  79. const int mb_block_count = 4 + (1 << s->chroma_format);
  80. assert(avctx);
  81. if (!render || render->xvmc_id != AV_XVMC_ID ||
  82. !render->data_blocks || !render->mv_blocks ||
  83. (unsigned int)render->allocated_mv_blocks > INT_MAX/(64*6) ||
  84. (unsigned int)render->allocated_data_blocks > INT_MAX/64 ||
  85. !render->p_surface) {
  86. av_log(avctx, AV_LOG_ERROR,
  87. "Render token doesn't look as expected.\n");
  88. return -1; // make sure that this is a render packet
  89. }
  90. if (render->filled_mv_blocks_num) {
  91. av_log(avctx, AV_LOG_ERROR,
  92. "Rendering surface contains %i unprocessed blocks.\n",
  93. render->filled_mv_blocks_num);
  94. return -1;
  95. }
  96. if (render->allocated_mv_blocks < 1 ||
  97. render->allocated_data_blocks < render->allocated_mv_blocks*mb_block_count ||
  98. render->start_mv_blocks_num >= render->allocated_mv_blocks ||
  99. render->next_free_data_block_num >
  100. render->allocated_data_blocks -
  101. mb_block_count*(render->allocated_mv_blocks-render->start_mv_blocks_num)) {
  102. av_log(avctx, AV_LOG_ERROR,
  103. "Rendering surface doesn't provide enough block structures to work with.\n");
  104. return -1;
  105. }
  106. render->picture_structure = s->picture_structure;
  107. render->flags = s->first_field ? 0 : XVMC_SECOND_FIELD;
  108. render->p_future_surface = NULL;
  109. render->p_past_surface = NULL;
  110. switch(s->pict_type) {
  111. case AV_PICTURE_TYPE_I:
  112. return 0; // no prediction from other frames
  113. case AV_PICTURE_TYPE_B:
  114. next = (struct xvmc_pix_fmt*)s->next_picture.f.data[2];
  115. if (!next)
  116. return -1;
  117. if (next->xvmc_id != AV_XVMC_ID)
  118. return -1;
  119. render->p_future_surface = next->p_surface;
  120. // no return here, going to set forward prediction
  121. case AV_PICTURE_TYPE_P:
  122. last = (struct xvmc_pix_fmt*)s->last_picture.f.data[2];
  123. if (!last)
  124. last = render; // predict second field from the first
  125. if (last->xvmc_id != AV_XVMC_ID)
  126. return -1;
  127. render->p_past_surface = last->p_surface;
  128. return 0;
  129. }
  130. return -1;
  131. }
  132. /**
  133. * Complete frame/field rendering by passing any remaining blocks.
  134. * Normally ff_draw_horiz_band() is called for each slice, however,
  135. * some leftover blocks, for example from error_resilience(), may remain.
  136. * It should be safe to call the function a few times for the same field.
  137. */
  138. static int ff_xvmc_field_end(AVCodecContext *avctx)
  139. {
  140. struct MpegEncContext *s = avctx->priv_data;
  141. struct xvmc_pix_fmt *render = (struct xvmc_pix_fmt*)s->current_picture.f.data[2];
  142. assert(render);
  143. if (render->filled_mv_blocks_num > 0)
  144. ff_mpeg_draw_horiz_band(s, 0, 0);
  145. return 0;
  146. }
  147. /**
  148. * Synthesize the data needed by XvMC to render one macroblock of data.
  149. * Fill all relevant fields, if necessary do IDCT.
  150. */
  151. static void ff_xvmc_decode_mb(struct MpegEncContext *s)
  152. {
  153. XvMCMacroBlock *mv_block;
  154. struct xvmc_pix_fmt *render;
  155. int i, cbp, blocks_per_mb;
  156. const int mb_xy = s->mb_y * s->mb_stride + s->mb_x;
  157. if (s->encoding) {
  158. av_log(s->avctx, AV_LOG_ERROR, "XVMC doesn't support encoding!!!\n");
  159. return;
  160. }
  161. // from MPV_decode_mb(), update DC predictors for P macroblocks
  162. if (!s->mb_intra) {
  163. s->last_dc[0] =
  164. s->last_dc[1] =
  165. s->last_dc[2] = 128 << s->intra_dc_precision;
  166. }
  167. // MC doesn't skip blocks
  168. s->mb_skipped = 0;
  169. // Do I need to export quant when I could not perform postprocessing?
  170. // Anyway, it doesn't hurt.
  171. s->current_picture.qscale_table[mb_xy] = s->qscale;
  172. // start of XVMC-specific code
  173. render = (struct xvmc_pix_fmt*)s->current_picture.f.data[2];
  174. assert(render);
  175. assert(render->xvmc_id == AV_XVMC_ID);
  176. assert(render->mv_blocks);
  177. // take the next free macroblock
  178. mv_block = &render->mv_blocks[render->start_mv_blocks_num +
  179. render->filled_mv_blocks_num];
  180. mv_block->x = s->mb_x;
  181. mv_block->y = s->mb_y;
  182. mv_block->dct_type = s->interlaced_dct; // XVMC_DCT_TYPE_FRAME/FIELD;
  183. if (s->mb_intra) {
  184. mv_block->macroblock_type = XVMC_MB_TYPE_INTRA; // no MC, all done
  185. } else {
  186. mv_block->macroblock_type = XVMC_MB_TYPE_PATTERN;
  187. if (s->mv_dir & MV_DIR_FORWARD) {
  188. mv_block->macroblock_type |= XVMC_MB_TYPE_MOTION_FORWARD;
  189. // PMV[n][dir][xy] = mv[dir][n][xy]
  190. mv_block->PMV[0][0][0] = s->mv[0][0][0];
  191. mv_block->PMV[0][0][1] = s->mv[0][0][1];
  192. mv_block->PMV[1][0][0] = s->mv[0][1][0];
  193. mv_block->PMV[1][0][1] = s->mv[0][1][1];
  194. }
  195. if (s->mv_dir & MV_DIR_BACKWARD) {
  196. mv_block->macroblock_type |= XVMC_MB_TYPE_MOTION_BACKWARD;
  197. mv_block->PMV[0][1][0] = s->mv[1][0][0];
  198. mv_block->PMV[0][1][1] = s->mv[1][0][1];
  199. mv_block->PMV[1][1][0] = s->mv[1][1][0];
  200. mv_block->PMV[1][1][1] = s->mv[1][1][1];
  201. }
  202. switch(s->mv_type) {
  203. case MV_TYPE_16X16:
  204. mv_block->motion_type = XVMC_PREDICTION_FRAME;
  205. break;
  206. case MV_TYPE_16X8:
  207. mv_block->motion_type = XVMC_PREDICTION_16x8;
  208. break;
  209. case MV_TYPE_FIELD:
  210. mv_block->motion_type = XVMC_PREDICTION_FIELD;
  211. if (s->picture_structure == PICT_FRAME) {
  212. mv_block->PMV[0][0][1] <<= 1;
  213. mv_block->PMV[1][0][1] <<= 1;
  214. mv_block->PMV[0][1][1] <<= 1;
  215. mv_block->PMV[1][1][1] <<= 1;
  216. }
  217. break;
  218. case MV_TYPE_DMV:
  219. mv_block->motion_type = XVMC_PREDICTION_DUAL_PRIME;
  220. if (s->picture_structure == PICT_FRAME) {
  221. mv_block->PMV[0][0][0] = s->mv[0][0][0]; // top from top
  222. mv_block->PMV[0][0][1] = s->mv[0][0][1] << 1;
  223. mv_block->PMV[0][1][0] = s->mv[0][0][0]; // bottom from bottom
  224. mv_block->PMV[0][1][1] = s->mv[0][0][1] << 1;
  225. mv_block->PMV[1][0][0] = s->mv[0][2][0]; // dmv00, top from bottom
  226. mv_block->PMV[1][0][1] = s->mv[0][2][1] << 1; // dmv01
  227. mv_block->PMV[1][1][0] = s->mv[0][3][0]; // dmv10, bottom from top
  228. mv_block->PMV[1][1][1] = s->mv[0][3][1] << 1; // dmv11
  229. } else {
  230. mv_block->PMV[0][1][0] = s->mv[0][2][0]; // dmv00
  231. mv_block->PMV[0][1][1] = s->mv[0][2][1]; // dmv01
  232. }
  233. break;
  234. default:
  235. assert(0);
  236. }
  237. mv_block->motion_vertical_field_select = 0;
  238. // set correct field references
  239. if (s->mv_type == MV_TYPE_FIELD || s->mv_type == MV_TYPE_16X8) {
  240. mv_block->motion_vertical_field_select |= s->field_select[0][0];
  241. mv_block->motion_vertical_field_select |= s->field_select[1][0] << 1;
  242. mv_block->motion_vertical_field_select |= s->field_select[0][1] << 2;
  243. mv_block->motion_vertical_field_select |= s->field_select[1][1] << 3;
  244. }
  245. } // !intra
  246. // time to handle data blocks
  247. mv_block->index = render->next_free_data_block_num;
  248. blocks_per_mb = 6;
  249. if (s->chroma_format >= 2) {
  250. blocks_per_mb = 4 + (1 << s->chroma_format);
  251. }
  252. // calculate cbp
  253. cbp = 0;
  254. for (i = 0; i < blocks_per_mb; i++) {
  255. cbp += cbp;
  256. if (s->block_last_index[i] >= 0)
  257. cbp++;
  258. }
  259. if (s->flags & CODEC_FLAG_GRAY) {
  260. if (s->mb_intra) { // intra frames are always full chroma blocks
  261. for (i = 4; i < blocks_per_mb; i++) {
  262. memset(s->pblocks[i], 0, sizeof(*s->pblocks[i])); // so we need to clear them
  263. if (!render->unsigned_intra)
  264. *s->pblocks[i][0] = 1 << 10;
  265. }
  266. } else {
  267. cbp &= 0xf << (blocks_per_mb - 4);
  268. blocks_per_mb = 4; // luminance blocks only
  269. }
  270. }
  271. mv_block->coded_block_pattern = cbp;
  272. if (cbp == 0)
  273. mv_block->macroblock_type &= ~XVMC_MB_TYPE_PATTERN;
  274. for (i = 0; i < blocks_per_mb; i++) {
  275. if (s->block_last_index[i] >= 0) {
  276. // I do not have unsigned_intra MOCO to test, hope it is OK.
  277. if (s->mb_intra && (render->idct || !render->unsigned_intra))
  278. *s->pblocks[i][0] -= 1 << 10;
  279. if (!render->idct) {
  280. s->dsp.idct(*s->pblocks[i]);
  281. /* It is unclear if MC hardware requires pixel diff values to be
  282. * in the range [-255;255]. TODO: Clipping if such hardware is
  283. * ever found. As of now it would only be an unnecessary
  284. * slowdown. */
  285. }
  286. // copy blocks only if the codec doesn't support pblocks reordering
  287. if (!s->pack_pblocks) {
  288. memcpy(&render->data_blocks[render->next_free_data_block_num*64],
  289. s->pblocks[i], sizeof(*s->pblocks[i]));
  290. }
  291. render->next_free_data_block_num++;
  292. }
  293. }
  294. render->filled_mv_blocks_num++;
  295. assert(render->filled_mv_blocks_num <= render->allocated_mv_blocks);
  296. assert(render->next_free_data_block_num <= render->allocated_data_blocks);
  297. /* The above conditions should not be able to fail as long as this function
  298. * is used and the following 'if ()' automatically calls a callback to free
  299. * blocks. */
  300. if (render->filled_mv_blocks_num == render->allocated_mv_blocks)
  301. ff_mpeg_draw_horiz_band(s, 0, 0);
  302. }
  303. #if CONFIG_MPEG1_XVMC_HWACCEL
  304. AVHWAccel ff_mpeg1_xvmc_hwaccel = {
  305. .name = "mpeg1_xvmc",
  306. .type = AVMEDIA_TYPE_VIDEO,
  307. .id = AV_CODEC_ID_MPEG1VIDEO,
  308. .pix_fmt = AV_PIX_FMT_XVMC,
  309. .start_frame = ff_xvmc_field_start,
  310. .end_frame = ff_xvmc_field_end,
  311. .decode_slice = NULL,
  312. .decode_mb = ff_xvmc_decode_mb,
  313. .priv_data_size = 0,
  314. };
  315. #endif
  316. #if CONFIG_MPEG2_XVMC_HWACCEL
  317. AVHWAccel ff_mpeg2_xvmc_hwaccel = {
  318. .name = "mpeg2_xvmc",
  319. .type = AVMEDIA_TYPE_VIDEO,
  320. .id = AV_CODEC_ID_MPEG2VIDEO,
  321. .pix_fmt = AV_PIX_FMT_XVMC,
  322. .start_frame = ff_xvmc_field_start,
  323. .end_frame = ff_xvmc_field_end,
  324. .decode_slice = NULL,
  325. .decode_mb = ff_xvmc_decode_mb,
  326. .priv_data_size = 0,
  327. };
  328. #endif