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.

722 lines
28KB

  1. /*
  2. * Video Decode and Presentation API for UNIX (VDPAU) is used for
  3. * HW decode acceleration for MPEG-1/2, MPEG-4 ASP, H.264 and VC-1.
  4. *
  5. * Copyright (c) 2008 NVIDIA
  6. *
  7. * This file is part of FFmpeg.
  8. *
  9. * FFmpeg is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * FFmpeg is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with FFmpeg; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. #include <limits.h>
  24. #include "libavutil/avassert.h"
  25. #include "avcodec.h"
  26. #include "internal.h"
  27. #include "h264.h"
  28. #include "vc1.h"
  29. #undef NDEBUG
  30. #include <assert.h>
  31. #include "vdpau.h"
  32. #include "vdpau_internal.h"
  33. /**
  34. * @addtogroup VDPAU_Decoding
  35. *
  36. * @{
  37. */
  38. static int vdpau_error(VdpStatus status)
  39. {
  40. switch (status) {
  41. case VDP_STATUS_OK:
  42. return 0;
  43. case VDP_STATUS_NO_IMPLEMENTATION:
  44. return AVERROR(ENOSYS);
  45. case VDP_STATUS_DISPLAY_PREEMPTED:
  46. return AVERROR(EIO);
  47. case VDP_STATUS_INVALID_HANDLE:
  48. return AVERROR(EBADF);
  49. case VDP_STATUS_INVALID_POINTER:
  50. return AVERROR(EFAULT);
  51. case VDP_STATUS_RESOURCES:
  52. return AVERROR(ENOBUFS);
  53. case VDP_STATUS_HANDLE_DEVICE_MISMATCH:
  54. return AVERROR(EXDEV);
  55. case VDP_STATUS_ERROR:
  56. return AVERROR(EIO);
  57. default:
  58. return AVERROR(EINVAL);
  59. }
  60. }
  61. AVVDPAUContext *av_alloc_vdpaucontext(void)
  62. {
  63. return av_vdpau_alloc_context();
  64. }
  65. MAKE_ACCESSORS(AVVDPAUContext, vdpau_hwaccel, AVVDPAU_Render2, render2)
  66. int ff_vdpau_common_init(AVCodecContext *avctx, VdpDecoderProfile profile,
  67. int level)
  68. {
  69. VDPAUHWContext *hwctx = avctx->hwaccel_context;
  70. VDPAUContext *vdctx = avctx->internal->hwaccel_priv_data;
  71. VdpVideoSurfaceQueryCapabilities *surface_query_caps;
  72. VdpDecoderQueryCapabilities *decoder_query_caps;
  73. VdpDecoderCreate *create;
  74. void *func;
  75. VdpStatus status;
  76. VdpBool supported;
  77. uint32_t max_level, max_mb, max_width, max_height;
  78. /* See vdpau/vdpau.h for alignment constraints. */
  79. uint32_t width = (avctx->coded_width + 1) & ~1;
  80. uint32_t height = (avctx->coded_height + 3) & ~3;
  81. vdctx->width = UINT32_MAX;
  82. vdctx->height = UINT32_MAX;
  83. if (!hwctx) {
  84. vdctx->device = VDP_INVALID_HANDLE;
  85. av_log(avctx, AV_LOG_WARNING, "hwaccel_context has not been setup by the user application, cannot initialize\n");
  86. return 0;
  87. }
  88. if (hwctx->context.decoder != VDP_INVALID_HANDLE) {
  89. vdctx->decoder = hwctx->context.decoder;
  90. vdctx->render = hwctx->context.render;
  91. vdctx->device = VDP_INVALID_HANDLE;
  92. return 0; /* Decoder created by user */
  93. }
  94. hwctx->reset = 0;
  95. vdctx->device = hwctx->device;
  96. vdctx->get_proc_address = hwctx->get_proc_address;
  97. if (hwctx->flags & AV_HWACCEL_FLAG_IGNORE_LEVEL)
  98. level = 0;
  99. else if (level < 0)
  100. return AVERROR(ENOTSUP);
  101. status = vdctx->get_proc_address(vdctx->device,
  102. VDP_FUNC_ID_VIDEO_SURFACE_QUERY_CAPABILITIES,
  103. &func);
  104. if (status != VDP_STATUS_OK)
  105. return vdpau_error(status);
  106. else
  107. surface_query_caps = func;
  108. status = surface_query_caps(vdctx->device, VDP_CHROMA_TYPE_420, &supported,
  109. &max_width, &max_height);
  110. if (status != VDP_STATUS_OK)
  111. return vdpau_error(status);
  112. if (supported != VDP_TRUE ||
  113. max_width < width || max_height < height)
  114. return AVERROR(ENOTSUP);
  115. status = vdctx->get_proc_address(vdctx->device,
  116. VDP_FUNC_ID_DECODER_QUERY_CAPABILITIES,
  117. &func);
  118. if (status != VDP_STATUS_OK)
  119. return vdpau_error(status);
  120. else
  121. decoder_query_caps = func;
  122. status = decoder_query_caps(vdctx->device, profile, &supported, &max_level,
  123. &max_mb, &max_width, &max_height);
  124. #ifdef VDP_DECODER_PROFILE_H264_CONSTRAINED_BASELINE
  125. if (status != VDP_STATUS_OK && profile == VDP_DECODER_PROFILE_H264_CONSTRAINED_BASELINE) {
  126. /* Run-time backward compatibility for libvdpau 0.8 and earlier */
  127. profile = VDP_DECODER_PROFILE_H264_MAIN;
  128. status = decoder_query_caps(vdctx->device, profile, &supported,
  129. &max_level, &max_mb,
  130. &max_width, &max_height);
  131. }
  132. #endif
  133. if (status != VDP_STATUS_OK)
  134. return vdpau_error(status);
  135. if (supported != VDP_TRUE || max_level < level ||
  136. max_width < width || max_height < height)
  137. return AVERROR(ENOTSUP);
  138. status = vdctx->get_proc_address(vdctx->device, VDP_FUNC_ID_DECODER_CREATE,
  139. &func);
  140. if (status != VDP_STATUS_OK)
  141. return vdpau_error(status);
  142. else
  143. create = func;
  144. status = vdctx->get_proc_address(vdctx->device, VDP_FUNC_ID_DECODER_RENDER,
  145. &func);
  146. if (status != VDP_STATUS_OK)
  147. return vdpau_error(status);
  148. else
  149. vdctx->render = func;
  150. status = create(vdctx->device, profile, width, height, avctx->refs,
  151. &vdctx->decoder);
  152. if (status == VDP_STATUS_OK) {
  153. vdctx->width = avctx->coded_width;
  154. vdctx->height = avctx->coded_height;
  155. }
  156. return vdpau_error(status);
  157. }
  158. int ff_vdpau_common_uninit(AVCodecContext *avctx)
  159. {
  160. VDPAUContext *vdctx = avctx->internal->hwaccel_priv_data;
  161. VdpDecoderDestroy *destroy;
  162. void *func;
  163. VdpStatus status;
  164. if (vdctx->device == VDP_INVALID_HANDLE)
  165. return 0; /* Decoder created and destroyed by user */
  166. if (vdctx->width == UINT32_MAX && vdctx->height == UINT32_MAX)
  167. return 0;
  168. status = vdctx->get_proc_address(vdctx->device,
  169. VDP_FUNC_ID_DECODER_DESTROY, &func);
  170. if (status != VDP_STATUS_OK)
  171. return vdpau_error(status);
  172. else
  173. destroy = func;
  174. status = destroy(vdctx->decoder);
  175. return vdpau_error(status);
  176. }
  177. static int ff_vdpau_common_reinit(AVCodecContext *avctx)
  178. {
  179. VDPAUHWContext *hwctx = avctx->hwaccel_context;
  180. VDPAUContext *vdctx = avctx->internal->hwaccel_priv_data;
  181. if (vdctx->device == VDP_INVALID_HANDLE)
  182. return 0; /* Decoder created by user */
  183. if (avctx->coded_width == vdctx->width &&
  184. avctx->coded_height == vdctx->height && !hwctx->reset)
  185. return 0;
  186. avctx->hwaccel->uninit(avctx);
  187. return avctx->hwaccel->init(avctx);
  188. }
  189. int ff_vdpau_common_start_frame(struct vdpau_picture_context *pic_ctx,
  190. av_unused const uint8_t *buffer,
  191. av_unused uint32_t size)
  192. {
  193. pic_ctx->bitstream_buffers_allocated = 0;
  194. pic_ctx->bitstream_buffers_used = 0;
  195. pic_ctx->bitstream_buffers = NULL;
  196. return 0;
  197. }
  198. int ff_vdpau_common_end_frame(AVCodecContext *avctx, AVFrame *frame,
  199. struct vdpau_picture_context *pic_ctx)
  200. {
  201. VDPAUContext *vdctx = avctx->internal->hwaccel_priv_data;
  202. AVVDPAUContext *hwctx = avctx->hwaccel_context;
  203. VdpVideoSurface surf = ff_vdpau_get_surface_id(frame);
  204. VdpStatus status;
  205. int val;
  206. val = ff_vdpau_common_reinit(avctx);
  207. if (val < 0)
  208. return val;
  209. #if FF_API_BUFS_VDPAU
  210. FF_DISABLE_DEPRECATION_WARNINGS
  211. hwctx->info = pic_ctx->info;
  212. hwctx->bitstream_buffers = pic_ctx->bitstream_buffers;
  213. hwctx->bitstream_buffers_used = pic_ctx->bitstream_buffers_used;
  214. hwctx->bitstream_buffers_allocated = pic_ctx->bitstream_buffers_allocated;
  215. FF_ENABLE_DEPRECATION_WARNINGS
  216. #endif
  217. if (!hwctx->render && hwctx->render2) {
  218. status = hwctx->render2(avctx, frame, (void *)&pic_ctx->info,
  219. pic_ctx->bitstream_buffers_used, pic_ctx->bitstream_buffers);
  220. } else
  221. status = vdctx->render(vdctx->decoder, surf, (void *)&pic_ctx->info,
  222. pic_ctx->bitstream_buffers_used,
  223. pic_ctx->bitstream_buffers);
  224. av_freep(&pic_ctx->bitstream_buffers);
  225. #if FF_API_BUFS_VDPAU
  226. FF_DISABLE_DEPRECATION_WARNINGS
  227. hwctx->bitstream_buffers = NULL;
  228. hwctx->bitstream_buffers_used = 0;
  229. hwctx->bitstream_buffers_allocated = 0;
  230. FF_ENABLE_DEPRECATION_WARNINGS
  231. #endif
  232. return vdpau_error(status);
  233. }
  234. #if CONFIG_H263_VDPAU_HWACCEL || CONFIG_MPEG1_VDPAU_HWACCEL || \
  235. CONFIG_MPEG2_VDPAU_HWACCEL || CONFIG_MPEG4_VDPAU_HWACCEL || \
  236. CONFIG_VC1_VDPAU_HWACCEL || CONFIG_WMV3_VDPAU_HWACCEL
  237. int ff_vdpau_mpeg_end_frame(AVCodecContext *avctx)
  238. {
  239. MpegEncContext *s = avctx->priv_data;
  240. Picture *pic = s->current_picture_ptr;
  241. struct vdpau_picture_context *pic_ctx = pic->hwaccel_picture_private;
  242. int val;
  243. val = ff_vdpau_common_end_frame(avctx, pic->f, pic_ctx);
  244. if (val < 0)
  245. return val;
  246. ff_mpeg_draw_horiz_band(s, 0, s->avctx->height);
  247. return 0;
  248. }
  249. #endif
  250. int ff_vdpau_add_buffer(struct vdpau_picture_context *pic_ctx,
  251. const uint8_t *buf, uint32_t size)
  252. {
  253. VdpBitstreamBuffer *buffers = pic_ctx->bitstream_buffers;
  254. buffers = av_fast_realloc(buffers, &pic_ctx->bitstream_buffers_allocated,
  255. (pic_ctx->bitstream_buffers_used + 1) * sizeof(*buffers));
  256. if (!buffers)
  257. return AVERROR(ENOMEM);
  258. pic_ctx->bitstream_buffers = buffers;
  259. buffers += pic_ctx->bitstream_buffers_used++;
  260. buffers->struct_version = VDP_BITSTREAM_BUFFER_VERSION;
  261. buffers->bitstream = buf;
  262. buffers->bitstream_bytes = size;
  263. return 0;
  264. }
  265. /* Obsolete non-hwaccel VDPAU support below... */
  266. void ff_vdpau_h264_set_reference_frames(H264Context *h)
  267. {
  268. struct vdpau_render_state *render, *render_ref;
  269. VdpReferenceFrameH264 *rf, *rf2;
  270. H264Picture *pic;
  271. int i, list, pic_frame_idx;
  272. render = (struct vdpau_render_state *)h->cur_pic_ptr->f.data[0];
  273. assert(render);
  274. rf = &render->info.h264.referenceFrames[0];
  275. #define H264_RF_COUNT FF_ARRAY_ELEMS(render->info.h264.referenceFrames)
  276. for (list = 0; list < 2; ++list) {
  277. H264Picture **lp = list ? h->long_ref : h->short_ref;
  278. int ls = list ? 16 : h->short_ref_count;
  279. for (i = 0; i < ls; ++i) {
  280. pic = lp[i];
  281. if (!pic || !pic->reference)
  282. continue;
  283. pic_frame_idx = pic->long_ref ? pic->pic_id : pic->frame_num;
  284. render_ref = (struct vdpau_render_state *)pic->f.data[0];
  285. assert(render_ref);
  286. rf2 = &render->info.h264.referenceFrames[0];
  287. while (rf2 != rf) {
  288. if (
  289. (rf2->surface == render_ref->surface)
  290. && (rf2->is_long_term == pic->long_ref)
  291. && (rf2->frame_idx == pic_frame_idx)
  292. )
  293. break;
  294. ++rf2;
  295. }
  296. if (rf2 != rf) {
  297. rf2->top_is_reference |= (pic->reference & PICT_TOP_FIELD) ? VDP_TRUE : VDP_FALSE;
  298. rf2->bottom_is_reference |= (pic->reference & PICT_BOTTOM_FIELD) ? VDP_TRUE : VDP_FALSE;
  299. continue;
  300. }
  301. if (rf >= &render->info.h264.referenceFrames[H264_RF_COUNT])
  302. continue;
  303. rf->surface = render_ref->surface;
  304. rf->is_long_term = pic->long_ref;
  305. rf->top_is_reference = (pic->reference & PICT_TOP_FIELD) ? VDP_TRUE : VDP_FALSE;
  306. rf->bottom_is_reference = (pic->reference & PICT_BOTTOM_FIELD) ? VDP_TRUE : VDP_FALSE;
  307. rf->field_order_cnt[0] = pic->field_poc[0];
  308. rf->field_order_cnt[1] = pic->field_poc[1];
  309. rf->frame_idx = pic_frame_idx;
  310. ++rf;
  311. }
  312. }
  313. for (; rf < &render->info.h264.referenceFrames[H264_RF_COUNT]; ++rf) {
  314. rf->surface = VDP_INVALID_HANDLE;
  315. rf->is_long_term = 0;
  316. rf->top_is_reference = 0;
  317. rf->bottom_is_reference = 0;
  318. rf->field_order_cnt[0] = 0;
  319. rf->field_order_cnt[1] = 0;
  320. rf->frame_idx = 0;
  321. }
  322. }
  323. void ff_vdpau_add_data_chunk(uint8_t *data, const uint8_t *buf, int buf_size)
  324. {
  325. struct vdpau_render_state *render = (struct vdpau_render_state*)data;
  326. assert(render);
  327. render->bitstream_buffers= av_fast_realloc(
  328. render->bitstream_buffers,
  329. &render->bitstream_buffers_allocated,
  330. sizeof(*render->bitstream_buffers)*(render->bitstream_buffers_used + 1)
  331. );
  332. render->bitstream_buffers[render->bitstream_buffers_used].struct_version = VDP_BITSTREAM_BUFFER_VERSION;
  333. render->bitstream_buffers[render->bitstream_buffers_used].bitstream = buf;
  334. render->bitstream_buffers[render->bitstream_buffers_used].bitstream_bytes = buf_size;
  335. render->bitstream_buffers_used++;
  336. }
  337. #if CONFIG_H264_VDPAU_DECODER
  338. void ff_vdpau_h264_picture_start(H264Context *h)
  339. {
  340. struct vdpau_render_state *render;
  341. int i;
  342. render = (struct vdpau_render_state *)h->cur_pic_ptr->f.data[0];
  343. assert(render);
  344. for (i = 0; i < 2; ++i) {
  345. int foc = h->cur_pic_ptr->field_poc[i];
  346. if (foc == INT_MAX)
  347. foc = 0;
  348. render->info.h264.field_order_cnt[i] = foc;
  349. }
  350. render->info.h264.frame_num = h->frame_num;
  351. }
  352. void ff_vdpau_h264_picture_complete(H264Context *h)
  353. {
  354. struct vdpau_render_state *render;
  355. render = (struct vdpau_render_state *)h->cur_pic_ptr->f.data[0];
  356. assert(render);
  357. render->info.h264.slice_count = h->slice_num;
  358. if (render->info.h264.slice_count < 1)
  359. return;
  360. render->info.h264.is_reference = (h->cur_pic_ptr->reference & 3) ? VDP_TRUE : VDP_FALSE;
  361. render->info.h264.field_pic_flag = h->picture_structure != PICT_FRAME;
  362. render->info.h264.bottom_field_flag = h->picture_structure == PICT_BOTTOM_FIELD;
  363. render->info.h264.num_ref_frames = h->sps.ref_frame_count;
  364. render->info.h264.mb_adaptive_frame_field_flag = h->sps.mb_aff && !render->info.h264.field_pic_flag;
  365. render->info.h264.constrained_intra_pred_flag = h->pps.constrained_intra_pred;
  366. render->info.h264.weighted_pred_flag = h->pps.weighted_pred;
  367. render->info.h264.weighted_bipred_idc = h->pps.weighted_bipred_idc;
  368. render->info.h264.frame_mbs_only_flag = h->sps.frame_mbs_only_flag;
  369. render->info.h264.transform_8x8_mode_flag = h->pps.transform_8x8_mode;
  370. render->info.h264.chroma_qp_index_offset = h->pps.chroma_qp_index_offset[0];
  371. render->info.h264.second_chroma_qp_index_offset = h->pps.chroma_qp_index_offset[1];
  372. render->info.h264.pic_init_qp_minus26 = h->pps.init_qp - 26;
  373. render->info.h264.num_ref_idx_l0_active_minus1 = h->pps.ref_count[0] - 1;
  374. render->info.h264.num_ref_idx_l1_active_minus1 = h->pps.ref_count[1] - 1;
  375. render->info.h264.log2_max_frame_num_minus4 = h->sps.log2_max_frame_num - 4;
  376. render->info.h264.pic_order_cnt_type = h->sps.poc_type;
  377. render->info.h264.log2_max_pic_order_cnt_lsb_minus4 = h->sps.poc_type ? 0 : h->sps.log2_max_poc_lsb - 4;
  378. render->info.h264.delta_pic_order_always_zero_flag = h->sps.delta_pic_order_always_zero_flag;
  379. render->info.h264.direct_8x8_inference_flag = h->sps.direct_8x8_inference_flag;
  380. render->info.h264.entropy_coding_mode_flag = h->pps.cabac;
  381. render->info.h264.pic_order_present_flag = h->pps.pic_order_present;
  382. render->info.h264.deblocking_filter_control_present_flag = h->pps.deblocking_filter_parameters_present;
  383. render->info.h264.redundant_pic_cnt_present_flag = h->pps.redundant_pic_cnt_present;
  384. memcpy(render->info.h264.scaling_lists_4x4, h->pps.scaling_matrix4, sizeof(render->info.h264.scaling_lists_4x4));
  385. memcpy(render->info.h264.scaling_lists_8x8[0], h->pps.scaling_matrix8[0], sizeof(render->info.h264.scaling_lists_8x8[0]));
  386. memcpy(render->info.h264.scaling_lists_8x8[1], h->pps.scaling_matrix8[3], sizeof(render->info.h264.scaling_lists_8x8[0]));
  387. ff_h264_draw_horiz_band(h, 0, h->avctx->height);
  388. render->bitstream_buffers_used = 0;
  389. }
  390. #endif /* CONFIG_H264_VDPAU_DECODER */
  391. #if CONFIG_MPEG_VDPAU_DECODER || CONFIG_MPEG1_VDPAU_DECODER
  392. void ff_vdpau_mpeg_picture_complete(MpegEncContext *s, const uint8_t *buf,
  393. int buf_size, int slice_count)
  394. {
  395. struct vdpau_render_state *render, *last, *next;
  396. int i;
  397. if (!s->current_picture_ptr) return;
  398. render = (struct vdpau_render_state *)s->current_picture_ptr->f->data[0];
  399. assert(render);
  400. /* fill VdpPictureInfoMPEG1Or2 struct */
  401. render->info.mpeg.picture_structure = s->picture_structure;
  402. render->info.mpeg.picture_coding_type = s->pict_type;
  403. render->info.mpeg.intra_dc_precision = s->intra_dc_precision;
  404. render->info.mpeg.frame_pred_frame_dct = s->frame_pred_frame_dct;
  405. render->info.mpeg.concealment_motion_vectors = s->concealment_motion_vectors;
  406. render->info.mpeg.intra_vlc_format = s->intra_vlc_format;
  407. render->info.mpeg.alternate_scan = s->alternate_scan;
  408. render->info.mpeg.q_scale_type = s->q_scale_type;
  409. render->info.mpeg.top_field_first = s->top_field_first;
  410. render->info.mpeg.full_pel_forward_vector = s->full_pel[0]; // MPEG-1 only. Set 0 for MPEG-2
  411. render->info.mpeg.full_pel_backward_vector = s->full_pel[1]; // MPEG-1 only. Set 0 for MPEG-2
  412. render->info.mpeg.f_code[0][0] = s->mpeg_f_code[0][0]; // For MPEG-1 fill both horiz. & vert.
  413. render->info.mpeg.f_code[0][1] = s->mpeg_f_code[0][1];
  414. render->info.mpeg.f_code[1][0] = s->mpeg_f_code[1][0];
  415. render->info.mpeg.f_code[1][1] = s->mpeg_f_code[1][1];
  416. for (i = 0; i < 64; ++i) {
  417. render->info.mpeg.intra_quantizer_matrix[i] = s->intra_matrix[i];
  418. render->info.mpeg.non_intra_quantizer_matrix[i] = s->inter_matrix[i];
  419. }
  420. render->info.mpeg.forward_reference = VDP_INVALID_HANDLE;
  421. render->info.mpeg.backward_reference = VDP_INVALID_HANDLE;
  422. switch(s->pict_type){
  423. case AV_PICTURE_TYPE_B:
  424. next = (struct vdpau_render_state *)s->next_picture.f->data[0];
  425. assert(next);
  426. render->info.mpeg.backward_reference = next->surface;
  427. // no return here, going to set forward prediction
  428. case AV_PICTURE_TYPE_P:
  429. last = (struct vdpau_render_state *)s->last_picture.f->data[0];
  430. if (!last) // FIXME: Does this test make sense?
  431. last = render; // predict second field from the first
  432. render->info.mpeg.forward_reference = last->surface;
  433. }
  434. ff_vdpau_add_data_chunk(s->current_picture_ptr->f->data[0], buf, buf_size);
  435. render->info.mpeg.slice_count = slice_count;
  436. if (slice_count)
  437. ff_mpeg_draw_horiz_band(s, 0, s->avctx->height);
  438. render->bitstream_buffers_used = 0;
  439. }
  440. #endif /* CONFIG_MPEG_VDPAU_DECODER || CONFIG_MPEG1_VDPAU_DECODER */
  441. #if CONFIG_VC1_VDPAU_DECODER
  442. void ff_vdpau_vc1_decode_picture(MpegEncContext *s, const uint8_t *buf,
  443. int buf_size)
  444. {
  445. VC1Context *v = s->avctx->priv_data;
  446. struct vdpau_render_state *render, *last, *next;
  447. render = (struct vdpau_render_state *)s->current_picture.f->data[0];
  448. assert(render);
  449. /* fill LvPictureInfoVC1 struct */
  450. render->info.vc1.frame_coding_mode = v->fcm ? v->fcm + 1 : 0;
  451. render->info.vc1.postprocflag = v->postprocflag;
  452. render->info.vc1.pulldown = v->broadcast;
  453. render->info.vc1.interlace = v->interlace;
  454. render->info.vc1.tfcntrflag = v->tfcntrflag;
  455. render->info.vc1.finterpflag = v->finterpflag;
  456. render->info.vc1.psf = v->psf;
  457. render->info.vc1.dquant = v->dquant;
  458. render->info.vc1.panscan_flag = v->panscanflag;
  459. render->info.vc1.refdist_flag = v->refdist_flag;
  460. render->info.vc1.quantizer = v->quantizer_mode;
  461. render->info.vc1.extended_mv = v->extended_mv;
  462. render->info.vc1.extended_dmv = v->extended_dmv;
  463. render->info.vc1.overlap = v->overlap;
  464. render->info.vc1.vstransform = v->vstransform;
  465. render->info.vc1.loopfilter = v->s.loop_filter;
  466. render->info.vc1.fastuvmc = v->fastuvmc;
  467. render->info.vc1.range_mapy_flag = v->range_mapy_flag;
  468. render->info.vc1.range_mapy = v->range_mapy;
  469. render->info.vc1.range_mapuv_flag = v->range_mapuv_flag;
  470. render->info.vc1.range_mapuv = v->range_mapuv;
  471. /* Specific to simple/main profile only */
  472. render->info.vc1.multires = v->multires;
  473. render->info.vc1.syncmarker = v->resync_marker;
  474. render->info.vc1.rangered = v->rangered | (v->rangeredfrm << 1);
  475. render->info.vc1.maxbframes = v->s.max_b_frames;
  476. render->info.vc1.deblockEnable = v->postprocflag & 1;
  477. render->info.vc1.pquant = v->pq;
  478. render->info.vc1.forward_reference = VDP_INVALID_HANDLE;
  479. render->info.vc1.backward_reference = VDP_INVALID_HANDLE;
  480. if (v->bi_type)
  481. render->info.vc1.picture_type = 4;
  482. else
  483. render->info.vc1.picture_type = s->pict_type - 1 + s->pict_type / 3;
  484. switch(s->pict_type){
  485. case AV_PICTURE_TYPE_B:
  486. next = (struct vdpau_render_state *)s->next_picture.f->data[0];
  487. assert(next);
  488. render->info.vc1.backward_reference = next->surface;
  489. // no break here, going to set forward prediction
  490. case AV_PICTURE_TYPE_P:
  491. last = (struct vdpau_render_state *)s->last_picture.f->data[0];
  492. if (!last) // FIXME: Does this test make sense?
  493. last = render; // predict second field from the first
  494. render->info.vc1.forward_reference = last->surface;
  495. }
  496. ff_vdpau_add_data_chunk(s->current_picture_ptr->f->data[0], buf, buf_size);
  497. render->info.vc1.slice_count = 1;
  498. ff_mpeg_draw_horiz_band(s, 0, s->avctx->height);
  499. render->bitstream_buffers_used = 0;
  500. }
  501. #endif /* (CONFIG_VC1_VDPAU_DECODER */
  502. #if CONFIG_MPEG4_VDPAU_DECODER
  503. void ff_vdpau_mpeg4_decode_picture(Mpeg4DecContext *ctx, const uint8_t *buf,
  504. int buf_size)
  505. {
  506. MpegEncContext *s = &ctx->m;
  507. struct vdpau_render_state *render, *last, *next;
  508. int i;
  509. if (!s->current_picture_ptr) return;
  510. render = (struct vdpau_render_state *)s->current_picture_ptr->f->data[0];
  511. assert(render);
  512. /* fill VdpPictureInfoMPEG4Part2 struct */
  513. render->info.mpeg4.trd[0] = s->pp_time;
  514. render->info.mpeg4.trb[0] = s->pb_time;
  515. render->info.mpeg4.trd[1] = s->pp_field_time >> 1;
  516. render->info.mpeg4.trb[1] = s->pb_field_time >> 1;
  517. render->info.mpeg4.vop_time_increment_resolution = s->avctx->time_base.den;
  518. render->info.mpeg4.vop_coding_type = 0;
  519. render->info.mpeg4.vop_fcode_forward = s->f_code;
  520. render->info.mpeg4.vop_fcode_backward = s->b_code;
  521. render->info.mpeg4.resync_marker_disable = !ctx->resync_marker;
  522. render->info.mpeg4.interlaced = !s->progressive_sequence;
  523. render->info.mpeg4.quant_type = s->mpeg_quant;
  524. render->info.mpeg4.quarter_sample = s->quarter_sample;
  525. render->info.mpeg4.short_video_header = s->avctx->codec->id == AV_CODEC_ID_H263;
  526. render->info.mpeg4.rounding_control = s->no_rounding;
  527. render->info.mpeg4.alternate_vertical_scan_flag = s->alternate_scan;
  528. render->info.mpeg4.top_field_first = s->top_field_first;
  529. for (i = 0; i < 64; ++i) {
  530. render->info.mpeg4.intra_quantizer_matrix[i] = s->intra_matrix[i];
  531. render->info.mpeg4.non_intra_quantizer_matrix[i] = s->inter_matrix[i];
  532. }
  533. render->info.mpeg4.forward_reference = VDP_INVALID_HANDLE;
  534. render->info.mpeg4.backward_reference = VDP_INVALID_HANDLE;
  535. switch (s->pict_type) {
  536. case AV_PICTURE_TYPE_B:
  537. next = (struct vdpau_render_state *)s->next_picture.f->data[0];
  538. assert(next);
  539. render->info.mpeg4.backward_reference = next->surface;
  540. render->info.mpeg4.vop_coding_type = 2;
  541. // no break here, going to set forward prediction
  542. case AV_PICTURE_TYPE_P:
  543. last = (struct vdpau_render_state *)s->last_picture.f->data[0];
  544. assert(last);
  545. render->info.mpeg4.forward_reference = last->surface;
  546. }
  547. ff_vdpau_add_data_chunk(s->current_picture_ptr->f->data[0], buf, buf_size);
  548. ff_mpeg_draw_horiz_band(s, 0, s->avctx->height);
  549. render->bitstream_buffers_used = 0;
  550. }
  551. #endif /* CONFIG_MPEG4_VDPAU_DECODER */
  552. int av_vdpau_get_profile(AVCodecContext *avctx, VdpDecoderProfile *profile)
  553. {
  554. #define PROFILE(prof) \
  555. do { \
  556. *profile = VDP_DECODER_PROFILE_##prof; \
  557. return 0; \
  558. } while (0)
  559. switch (avctx->codec_id) {
  560. case AV_CODEC_ID_MPEG1VIDEO: PROFILE(MPEG1);
  561. case AV_CODEC_ID_MPEG2VIDEO:
  562. switch (avctx->profile) {
  563. case FF_PROFILE_MPEG2_MAIN: PROFILE(MPEG2_MAIN);
  564. case FF_PROFILE_MPEG2_SIMPLE: PROFILE(MPEG2_SIMPLE);
  565. default: return AVERROR(EINVAL);
  566. }
  567. case AV_CODEC_ID_H263: PROFILE(MPEG4_PART2_ASP);
  568. case AV_CODEC_ID_MPEG4:
  569. switch (avctx->profile) {
  570. case FF_PROFILE_MPEG4_SIMPLE: PROFILE(MPEG4_PART2_SP);
  571. case FF_PROFILE_MPEG4_ADVANCED_SIMPLE: PROFILE(MPEG4_PART2_ASP);
  572. default: return AVERROR(EINVAL);
  573. }
  574. case AV_CODEC_ID_H264:
  575. switch (avctx->profile & ~FF_PROFILE_H264_INTRA) {
  576. case FF_PROFILE_H264_BASELINE: PROFILE(H264_BASELINE);
  577. case FF_PROFILE_H264_CONSTRAINED_BASELINE:
  578. case FF_PROFILE_H264_MAIN: PROFILE(H264_MAIN);
  579. case FF_PROFILE_H264_HIGH: PROFILE(H264_HIGH);
  580. #ifdef VDP_DECODER_PROFILE_H264_EXTENDED
  581. case FF_PROFILE_H264_EXTENDED: PROFILE(H264_EXTENDED);
  582. #endif
  583. default: return AVERROR(EINVAL);
  584. }
  585. case AV_CODEC_ID_WMV3:
  586. case AV_CODEC_ID_VC1:
  587. switch (avctx->profile) {
  588. case FF_PROFILE_VC1_SIMPLE: PROFILE(VC1_SIMPLE);
  589. case FF_PROFILE_VC1_MAIN: PROFILE(VC1_MAIN);
  590. case FF_PROFILE_VC1_ADVANCED: PROFILE(VC1_ADVANCED);
  591. default: return AVERROR(EINVAL);
  592. }
  593. }
  594. return AVERROR(EINVAL);
  595. #undef PROFILE
  596. }
  597. AVVDPAUContext *av_vdpau_alloc_context(void)
  598. {
  599. return av_mallocz(sizeof(AVVDPAUContext));
  600. }
  601. int av_vdpau_bind_context(AVCodecContext *avctx, VdpDevice device,
  602. VdpGetProcAddress *get_proc, unsigned flags)
  603. {
  604. VDPAUHWContext *hwctx;
  605. if (flags & ~AV_HWACCEL_FLAG_IGNORE_LEVEL)
  606. return AVERROR(EINVAL);
  607. if (av_reallocp(&avctx->hwaccel_context, sizeof(*hwctx)))
  608. return AVERROR(ENOMEM);
  609. hwctx = avctx->hwaccel_context;
  610. memset(hwctx, 0, sizeof(*hwctx));
  611. hwctx->context.decoder = VDP_INVALID_HANDLE;
  612. hwctx->device = device;
  613. hwctx->get_proc_address = get_proc;
  614. hwctx->flags = flags;
  615. hwctx->reset = 1;
  616. return 0;
  617. }
  618. /* @}*/