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.
5 * Copyright (c) 2008 NVIDIA
7 * This file is part of FFmpeg.
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.
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.
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
25 #include "libavutil/avassert.h"
35 #include "vdpau_compat.h"
36 #include "vdpau_internal.h"
39 * @addtogroup VDPAU_Decoding
44 static int vdpau_error(VdpStatus status)
49 case VDP_STATUS_NO_IMPLEMENTATION:
50 return AVERROR(ENOSYS);
51 case VDP_STATUS_DISPLAY_PREEMPTED:
53 case VDP_STATUS_INVALID_HANDLE:
54 return AVERROR(EBADF);
55 case VDP_STATUS_INVALID_POINTER:
56 return AVERROR(EFAULT);
57 case VDP_STATUS_RESOURCES:
58 return AVERROR(ENOBUFS);
59 case VDP_STATUS_HANDLE_DEVICE_MISMATCH:
60 return AVERROR(EXDEV);
61 case VDP_STATUS_ERROR:
64 return AVERROR(EINVAL);
68 AVVDPAUContext *av_alloc_vdpaucontext(void)
70 return av_vdpau_alloc_context();
73 MAKE_ACCESSORS(AVVDPAUContext, vdpau_hwaccel, AVVDPAU_Render2, render2)
75 int av_vdpau_get_surface_parameters(AVCodecContext *avctx,
77 uint32_t *width, uint32_t *height)
80 uint32_t w = avctx->coded_width;
81 uint32_t h = avctx->coded_height;
83 /* See <vdpau/vdpau.h> for per-type alignment constraints. */
84 switch (avctx->sw_pix_fmt) {
85 case AV_PIX_FMT_YUV420P:
86 case AV_PIX_FMT_YUVJ420P:
87 t = VDP_CHROMA_TYPE_420;
91 case AV_PIX_FMT_YUV422P:
92 case AV_PIX_FMT_YUVJ422P:
93 t = VDP_CHROMA_TYPE_422;
97 case AV_PIX_FMT_YUV444P:
98 case AV_PIX_FMT_YUVJ444P:
99 t = VDP_CHROMA_TYPE_444;
103 return AVERROR(ENOSYS);
115 int ff_vdpau_common_init(AVCodecContext *avctx, VdpDecoderProfile profile,
118 VDPAUHWContext *hwctx = avctx->hwaccel_context;
119 VDPAUContext *vdctx = avctx->internal->hwaccel_priv_data;
120 VdpVideoSurfaceQueryCapabilities *surface_query_caps;
121 VdpDecoderQueryCapabilities *decoder_query_caps;
122 VdpDecoderCreate *create;
126 uint32_t max_level, max_mb, max_width, max_height;
131 vdctx->width = UINT32_MAX;
132 vdctx->height = UINT32_MAX;
135 vdctx->device = VDP_INVALID_HANDLE;
136 av_log(avctx, AV_LOG_WARNING, "hwaccel_context has not been setup by the user application, cannot initialize\n");
140 if (hwctx->context.decoder != VDP_INVALID_HANDLE) {
141 vdctx->decoder = hwctx->context.decoder;
142 vdctx->render = hwctx->context.render;
143 vdctx->device = VDP_INVALID_HANDLE;
144 return 0; /* Decoder created by user */
148 vdctx->device = hwctx->device;
149 vdctx->get_proc_address = hwctx->get_proc_address;
151 if (hwctx->flags & AV_HWACCEL_FLAG_IGNORE_LEVEL)
154 return AVERROR(ENOTSUP);
156 if (av_vdpau_get_surface_parameters(avctx, &type, &width, &height))
157 return AVERROR(ENOSYS);
159 if (!(hwctx->flags & AV_HWACCEL_FLAG_ALLOW_HIGH_DEPTH) &&
160 type != VDP_CHROMA_TYPE_420)
161 return AVERROR(ENOSYS);
163 status = vdctx->get_proc_address(vdctx->device,
164 VDP_FUNC_ID_VIDEO_SURFACE_QUERY_CAPABILITIES,
166 if (status != VDP_STATUS_OK)
167 return vdpau_error(status);
169 surface_query_caps = func;
171 status = surface_query_caps(vdctx->device, type, &supported,
172 &max_width, &max_height);
173 if (status != VDP_STATUS_OK)
174 return vdpau_error(status);
175 if (supported != VDP_TRUE ||
176 max_width < width || max_height < height)
177 return AVERROR(ENOTSUP);
179 status = vdctx->get_proc_address(vdctx->device,
180 VDP_FUNC_ID_DECODER_QUERY_CAPABILITIES,
182 if (status != VDP_STATUS_OK)
183 return vdpau_error(status);
185 decoder_query_caps = func;
187 status = decoder_query_caps(vdctx->device, profile, &supported, &max_level,
188 &max_mb, &max_width, &max_height);
189 #ifdef VDP_DECODER_PROFILE_H264_CONSTRAINED_BASELINE
190 if (status != VDP_STATUS_OK && profile == VDP_DECODER_PROFILE_H264_CONSTRAINED_BASELINE) {
191 /* Run-time backward compatibility for libvdpau 0.8 and earlier */
192 profile = VDP_DECODER_PROFILE_H264_MAIN;
193 status = decoder_query_caps(vdctx->device, profile, &supported,
195 &max_width, &max_height);
198 if (status != VDP_STATUS_OK)
199 return vdpau_error(status);
201 if (supported != VDP_TRUE || max_level < level ||
202 max_width < width || max_height < height)
203 return AVERROR(ENOTSUP);
205 status = vdctx->get_proc_address(vdctx->device, VDP_FUNC_ID_DECODER_CREATE,
207 if (status != VDP_STATUS_OK)
208 return vdpau_error(status);
212 status = vdctx->get_proc_address(vdctx->device, VDP_FUNC_ID_DECODER_RENDER,
214 if (status != VDP_STATUS_OK)
215 return vdpau_error(status);
217 vdctx->render = func;
219 status = create(vdctx->device, profile, width, height, avctx->refs,
221 if (status == VDP_STATUS_OK) {
222 vdctx->width = avctx->coded_width;
223 vdctx->height = avctx->coded_height;
226 return vdpau_error(status);
229 int ff_vdpau_common_uninit(AVCodecContext *avctx)
231 VDPAUContext *vdctx = avctx->internal->hwaccel_priv_data;
232 VdpDecoderDestroy *destroy;
236 if (vdctx->device == VDP_INVALID_HANDLE)
237 return 0; /* Decoder created and destroyed by user */
238 if (vdctx->width == UINT32_MAX && vdctx->height == UINT32_MAX)
241 status = vdctx->get_proc_address(vdctx->device,
242 VDP_FUNC_ID_DECODER_DESTROY, &func);
243 if (status != VDP_STATUS_OK)
244 return vdpau_error(status);
248 status = destroy(vdctx->decoder);
249 return vdpau_error(status);
252 static int ff_vdpau_common_reinit(AVCodecContext *avctx)
254 VDPAUHWContext *hwctx = avctx->hwaccel_context;
255 VDPAUContext *vdctx = avctx->internal->hwaccel_priv_data;
257 if (vdctx->device == VDP_INVALID_HANDLE)
258 return 0; /* Decoder created by user */
259 if (avctx->coded_width == vdctx->width &&
260 avctx->coded_height == vdctx->height && !hwctx->reset)
263 avctx->hwaccel->uninit(avctx);
264 return avctx->hwaccel->init(avctx);
267 int ff_vdpau_common_start_frame(struct vdpau_picture_context *pic_ctx,
268 av_unused const uint8_t *buffer,
269 av_unused uint32_t size)
271 pic_ctx->bitstream_buffers_allocated = 0;
272 pic_ctx->bitstream_buffers_used = 0;
273 pic_ctx->bitstream_buffers = NULL;
277 int ff_vdpau_common_end_frame(AVCodecContext *avctx, AVFrame *frame,
278 struct vdpau_picture_context *pic_ctx)
280 VDPAUContext *vdctx = avctx->internal->hwaccel_priv_data;
281 AVVDPAUContext *hwctx = avctx->hwaccel_context;
282 VdpVideoSurface surf = ff_vdpau_get_surface_id(frame);
286 val = ff_vdpau_common_reinit(avctx);
290 #if FF_API_BUFS_VDPAU
291 FF_DISABLE_DEPRECATION_WARNINGS
292 av_assert0(sizeof(hwctx->info) <= sizeof(pic_ctx->info));
293 memcpy(&hwctx->info, &pic_ctx->info, sizeof(hwctx->info));
294 hwctx->bitstream_buffers = pic_ctx->bitstream_buffers;
295 hwctx->bitstream_buffers_used = pic_ctx->bitstream_buffers_used;
296 hwctx->bitstream_buffers_allocated = pic_ctx->bitstream_buffers_allocated;
297 FF_ENABLE_DEPRECATION_WARNINGS
300 if (!hwctx->render && hwctx->render2) {
301 status = hwctx->render2(avctx, frame, (void *)&pic_ctx->info,
302 pic_ctx->bitstream_buffers_used, pic_ctx->bitstream_buffers);
304 status = vdctx->render(vdctx->decoder, surf, (void *)&pic_ctx->info,
305 pic_ctx->bitstream_buffers_used,
306 pic_ctx->bitstream_buffers);
308 av_freep(&pic_ctx->bitstream_buffers);
310 #if FF_API_BUFS_VDPAU
311 FF_DISABLE_DEPRECATION_WARNINGS
312 hwctx->bitstream_buffers = NULL;
313 hwctx->bitstream_buffers_used = 0;
314 hwctx->bitstream_buffers_allocated = 0;
315 FF_ENABLE_DEPRECATION_WARNINGS
318 return vdpau_error(status);
321 #if CONFIG_H263_VDPAU_HWACCEL || CONFIG_MPEG1_VDPAU_HWACCEL || \
322 CONFIG_MPEG2_VDPAU_HWACCEL || CONFIG_MPEG4_VDPAU_HWACCEL || \
323 CONFIG_VC1_VDPAU_HWACCEL || CONFIG_WMV3_VDPAU_HWACCEL
324 int ff_vdpau_mpeg_end_frame(AVCodecContext *avctx)
326 MpegEncContext *s = avctx->priv_data;
327 Picture *pic = s->current_picture_ptr;
328 struct vdpau_picture_context *pic_ctx = pic->hwaccel_picture_private;
331 val = ff_vdpau_common_end_frame(avctx, pic->f, pic_ctx);
335 ff_mpeg_draw_horiz_band(s, 0, s->avctx->height);
340 int ff_vdpau_add_buffer(struct vdpau_picture_context *pic_ctx,
341 const uint8_t *buf, uint32_t size)
343 VdpBitstreamBuffer *buffers = pic_ctx->bitstream_buffers;
345 buffers = av_fast_realloc(buffers, &pic_ctx->bitstream_buffers_allocated,
346 (pic_ctx->bitstream_buffers_used + 1) * sizeof(*buffers));
348 return AVERROR(ENOMEM);
350 pic_ctx->bitstream_buffers = buffers;
351 buffers += pic_ctx->bitstream_buffers_used++;
353 buffers->struct_version = VDP_BITSTREAM_BUFFER_VERSION;
354 buffers->bitstream = buf;
355 buffers->bitstream_bytes = size;
359 /* Obsolete non-hwaccel VDPAU support below... */
361 void ff_vdpau_h264_set_reference_frames(H264Context *h)
363 struct vdpau_render_state *render, *render_ref;
364 VdpReferenceFrameH264 *rf, *rf2;
366 int i, list, pic_frame_idx;
368 render = (struct vdpau_render_state *)h->cur_pic_ptr->f->data[0];
371 rf = &render->info.h264.referenceFrames[0];
372 #define H264_RF_COUNT FF_ARRAY_ELEMS(render->info.h264.referenceFrames)
374 for (list = 0; list < 2; ++list) {
375 H264Picture **lp = list ? h->long_ref : h->short_ref;
376 int ls = list ? 16 : h->short_ref_count;
378 for (i = 0; i < ls; ++i) {
380 if (!pic || !pic->reference)
382 pic_frame_idx = pic->long_ref ? pic->pic_id : pic->frame_num;
384 render_ref = (struct vdpau_render_state *)pic->f->data[0];
387 rf2 = &render->info.h264.referenceFrames[0];
390 (rf2->surface == render_ref->surface)
391 && (rf2->is_long_term == pic->long_ref)
392 && (rf2->frame_idx == pic_frame_idx)
398 rf2->top_is_reference |= (pic->reference & PICT_TOP_FIELD) ? VDP_TRUE : VDP_FALSE;
399 rf2->bottom_is_reference |= (pic->reference & PICT_BOTTOM_FIELD) ? VDP_TRUE : VDP_FALSE;
403 if (rf >= &render->info.h264.referenceFrames[H264_RF_COUNT])
406 rf->surface = render_ref->surface;
407 rf->is_long_term = pic->long_ref;
408 rf->top_is_reference = (pic->reference & PICT_TOP_FIELD) ? VDP_TRUE : VDP_FALSE;
409 rf->bottom_is_reference = (pic->reference & PICT_BOTTOM_FIELD) ? VDP_TRUE : VDP_FALSE;
410 rf->field_order_cnt[0] = pic->field_poc[0];
411 rf->field_order_cnt[1] = pic->field_poc[1];
412 rf->frame_idx = pic_frame_idx;
418 for (; rf < &render->info.h264.referenceFrames[H264_RF_COUNT]; ++rf) {
419 rf->surface = VDP_INVALID_HANDLE;
420 rf->is_long_term = 0;
421 rf->top_is_reference = 0;
422 rf->bottom_is_reference = 0;
423 rf->field_order_cnt[0] = 0;
424 rf->field_order_cnt[1] = 0;
429 void ff_vdpau_add_data_chunk(uint8_t *data, const uint8_t *buf, int buf_size)
431 struct vdpau_render_state *render = (struct vdpau_render_state*)data;
434 render->bitstream_buffers= av_fast_realloc(
435 render->bitstream_buffers,
436 &render->bitstream_buffers_allocated,
437 sizeof(*render->bitstream_buffers)*(render->bitstream_buffers_used + 1)
440 render->bitstream_buffers[render->bitstream_buffers_used].struct_version = VDP_BITSTREAM_BUFFER_VERSION;
441 render->bitstream_buffers[render->bitstream_buffers_used].bitstream = buf;
442 render->bitstream_buffers[render->bitstream_buffers_used].bitstream_bytes = buf_size;
443 render->bitstream_buffers_used++;
446 #if CONFIG_H264_VDPAU_DECODER
447 void ff_vdpau_h264_picture_start(H264Context *h)
449 struct vdpau_render_state *render;
452 render = (struct vdpau_render_state *)h->cur_pic_ptr->f->data[0];
455 for (i = 0; i < 2; ++i) {
456 int foc = h->cur_pic_ptr->field_poc[i];
459 render->info.h264.field_order_cnt[i] = foc;
462 render->info.h264.frame_num = h->frame_num;
465 void ff_vdpau_h264_picture_complete(H264Context *h)
467 struct vdpau_render_state *render;
469 render = (struct vdpau_render_state *)h->cur_pic_ptr->f->data[0];
472 render->info.h264.slice_count = h->current_slice;
473 if (render->info.h264.slice_count < 1)
476 render->info.h264.is_reference = (h->cur_pic_ptr->reference & 3) ? VDP_TRUE : VDP_FALSE;
477 render->info.h264.field_pic_flag = h->picture_structure != PICT_FRAME;
478 render->info.h264.bottom_field_flag = h->picture_structure == PICT_BOTTOM_FIELD;
479 render->info.h264.num_ref_frames = h->sps.ref_frame_count;
480 render->info.h264.mb_adaptive_frame_field_flag = h->sps.mb_aff && !render->info.h264.field_pic_flag;
481 render->info.h264.constrained_intra_pred_flag = h->pps.constrained_intra_pred;
482 render->info.h264.weighted_pred_flag = h->pps.weighted_pred;
483 render->info.h264.weighted_bipred_idc = h->pps.weighted_bipred_idc;
484 render->info.h264.frame_mbs_only_flag = h->sps.frame_mbs_only_flag;
485 render->info.h264.transform_8x8_mode_flag = h->pps.transform_8x8_mode;
486 render->info.h264.chroma_qp_index_offset = h->pps.chroma_qp_index_offset[0];
487 render->info.h264.second_chroma_qp_index_offset = h->pps.chroma_qp_index_offset[1];
488 render->info.h264.pic_init_qp_minus26 = h->pps.init_qp - 26;
489 render->info.h264.num_ref_idx_l0_active_minus1 = h->pps.ref_count[0] - 1;
490 render->info.h264.num_ref_idx_l1_active_minus1 = h->pps.ref_count[1] - 1;
491 render->info.h264.log2_max_frame_num_minus4 = h->sps.log2_max_frame_num - 4;
492 render->info.h264.pic_order_cnt_type = h->sps.poc_type;
493 render->info.h264.log2_max_pic_order_cnt_lsb_minus4 = h->sps.poc_type ? 0 : h->sps.log2_max_poc_lsb - 4;
494 render->info.h264.delta_pic_order_always_zero_flag = h->sps.delta_pic_order_always_zero_flag;
495 render->info.h264.direct_8x8_inference_flag = h->sps.direct_8x8_inference_flag;
496 render->info.h264.entropy_coding_mode_flag = h->pps.cabac;
497 render->info.h264.pic_order_present_flag = h->pps.pic_order_present;
498 render->info.h264.deblocking_filter_control_present_flag = h->pps.deblocking_filter_parameters_present;
499 render->info.h264.redundant_pic_cnt_present_flag = h->pps.redundant_pic_cnt_present;
500 memcpy(render->info.h264.scaling_lists_4x4, h->pps.scaling_matrix4, sizeof(render->info.h264.scaling_lists_4x4));
501 memcpy(render->info.h264.scaling_lists_8x8[0], h->pps.scaling_matrix8[0], sizeof(render->info.h264.scaling_lists_8x8[0]));
502 memcpy(render->info.h264.scaling_lists_8x8[1], h->pps.scaling_matrix8[3], sizeof(render->info.h264.scaling_lists_8x8[0]));
504 ff_h264_draw_horiz_band(h, &h->slice_ctx[0], 0, h->avctx->height);
505 render->bitstream_buffers_used = 0;
507 #endif /* CONFIG_H264_VDPAU_DECODER */
509 #if CONFIG_MPEG_VDPAU_DECODER || CONFIG_MPEG1_VDPAU_DECODER
510 void ff_vdpau_mpeg_picture_complete(MpegEncContext *s, const uint8_t *buf,
511 int buf_size, int slice_count)
513 struct vdpau_render_state *render, *last, *next;
516 if (!s->current_picture_ptr) return;
518 render = (struct vdpau_render_state *)s->current_picture_ptr->f->data[0];
521 /* fill VdpPictureInfoMPEG1Or2 struct */
522 render->info.mpeg.picture_structure = s->picture_structure;
523 render->info.mpeg.picture_coding_type = s->pict_type;
524 render->info.mpeg.intra_dc_precision = s->intra_dc_precision;
525 render->info.mpeg.frame_pred_frame_dct = s->frame_pred_frame_dct;
526 render->info.mpeg.concealment_motion_vectors = s->concealment_motion_vectors;
527 render->info.mpeg.intra_vlc_format = s->intra_vlc_format;
528 render->info.mpeg.alternate_scan = s->alternate_scan;
529 render->info.mpeg.q_scale_type = s->q_scale_type;
530 render->info.mpeg.top_field_first = s->top_field_first;
531 render->info.mpeg.full_pel_forward_vector = s->full_pel[0]; // MPEG-1 only. Set 0 for MPEG-2
532 render->info.mpeg.full_pel_backward_vector = s->full_pel[1]; // MPEG-1 only. Set 0 for MPEG-2
533 render->info.mpeg.f_code[0][0] = s->mpeg_f_code[0][0]; // For MPEG-1 fill both horiz. & vert.
534 render->info.mpeg.f_code[0][1] = s->mpeg_f_code[0][1];
535 render->info.mpeg.f_code[1][0] = s->mpeg_f_code[1][0];
536 render->info.mpeg.f_code[1][1] = s->mpeg_f_code[1][1];
537 for (i = 0; i < 64; ++i) {
538 render->info.mpeg.intra_quantizer_matrix[i] = s->intra_matrix[i];
539 render->info.mpeg.non_intra_quantizer_matrix[i] = s->inter_matrix[i];
542 render->info.mpeg.forward_reference = VDP_INVALID_HANDLE;
543 render->info.mpeg.backward_reference = VDP_INVALID_HANDLE;
545 switch(s->pict_type){
546 case AV_PICTURE_TYPE_B:
547 next = (struct vdpau_render_state *)s->next_picture.f->data[0];
549 render->info.mpeg.backward_reference = next->surface;
550 // no return here, going to set forward prediction
551 case AV_PICTURE_TYPE_P:
552 last = (struct vdpau_render_state *)s->last_picture.f->data[0];
553 if (!last) // FIXME: Does this test make sense?
554 last = render; // predict second field from the first
555 render->info.mpeg.forward_reference = last->surface;
558 ff_vdpau_add_data_chunk(s->current_picture_ptr->f->data[0], buf, buf_size);
560 render->info.mpeg.slice_count = slice_count;
563 ff_mpeg_draw_horiz_band(s, 0, s->avctx->height);
564 render->bitstream_buffers_used = 0;
566 #endif /* CONFIG_MPEG_VDPAU_DECODER || CONFIG_MPEG1_VDPAU_DECODER */
568 #if CONFIG_VC1_VDPAU_DECODER
569 void ff_vdpau_vc1_decode_picture(MpegEncContext *s, const uint8_t *buf,
572 VC1Context *v = s->avctx->priv_data;
573 struct vdpau_render_state *render, *last, *next;
575 render = (struct vdpau_render_state *)s->current_picture.f->data[0];
578 /* fill LvPictureInfoVC1 struct */
579 render->info.vc1.frame_coding_mode = v->fcm ? v->fcm + 1 : 0;
580 render->info.vc1.postprocflag = v->postprocflag;
581 render->info.vc1.pulldown = v->broadcast;
582 render->info.vc1.interlace = v->interlace;
583 render->info.vc1.tfcntrflag = v->tfcntrflag;
584 render->info.vc1.finterpflag = v->finterpflag;
585 render->info.vc1.psf = v->psf;
586 render->info.vc1.dquant = v->dquant;
587 render->info.vc1.panscan_flag = v->panscanflag;
588 render->info.vc1.refdist_flag = v->refdist_flag;
589 render->info.vc1.quantizer = v->quantizer_mode;
590 render->info.vc1.extended_mv = v->extended_mv;
591 render->info.vc1.extended_dmv = v->extended_dmv;
592 render->info.vc1.overlap = v->overlap;
593 render->info.vc1.vstransform = v->vstransform;
594 render->info.vc1.loopfilter = v->s.loop_filter;
595 render->info.vc1.fastuvmc = v->fastuvmc;
596 render->info.vc1.range_mapy_flag = v->range_mapy_flag;
597 render->info.vc1.range_mapy = v->range_mapy;
598 render->info.vc1.range_mapuv_flag = v->range_mapuv_flag;
599 render->info.vc1.range_mapuv = v->range_mapuv;
600 /* Specific to simple/main profile only */
601 render->info.vc1.multires = v->multires;
602 render->info.vc1.syncmarker = v->resync_marker;
603 render->info.vc1.rangered = v->rangered | (v->rangeredfrm << 1);
604 render->info.vc1.maxbframes = v->s.max_b_frames;
606 render->info.vc1.deblockEnable = v->postprocflag & 1;
607 render->info.vc1.pquant = v->pq;
609 render->info.vc1.forward_reference = VDP_INVALID_HANDLE;
610 render->info.vc1.backward_reference = VDP_INVALID_HANDLE;
613 render->info.vc1.picture_type = 4;
615 render->info.vc1.picture_type = s->pict_type - 1 + s->pict_type / 3;
617 switch(s->pict_type){
618 case AV_PICTURE_TYPE_B:
619 next = (struct vdpau_render_state *)s->next_picture.f->data[0];
621 render->info.vc1.backward_reference = next->surface;
622 // no break here, going to set forward prediction
623 case AV_PICTURE_TYPE_P:
624 last = (struct vdpau_render_state *)s->last_picture.f->data[0];
625 if (!last) // FIXME: Does this test make sense?
626 last = render; // predict second field from the first
627 render->info.vc1.forward_reference = last->surface;
630 ff_vdpau_add_data_chunk(s->current_picture_ptr->f->data[0], buf, buf_size);
632 render->info.vc1.slice_count = 1;
634 ff_mpeg_draw_horiz_band(s, 0, s->avctx->height);
635 render->bitstream_buffers_used = 0;
637 #endif /* (CONFIG_VC1_VDPAU_DECODER */
639 #if CONFIG_MPEG4_VDPAU_DECODER
640 void ff_vdpau_mpeg4_decode_picture(Mpeg4DecContext *ctx, const uint8_t *buf,
643 MpegEncContext *s = &ctx->m;
644 struct vdpau_render_state *render, *last, *next;
647 if (!s->current_picture_ptr) return;
649 render = (struct vdpau_render_state *)s->current_picture_ptr->f->data[0];
652 /* fill VdpPictureInfoMPEG4Part2 struct */
653 render->info.mpeg4.trd[0] = s->pp_time;
654 render->info.mpeg4.trb[0] = s->pb_time;
655 render->info.mpeg4.trd[1] = s->pp_field_time >> 1;
656 render->info.mpeg4.trb[1] = s->pb_field_time >> 1;
657 render->info.mpeg4.vop_time_increment_resolution = s->avctx->time_base.den;
658 render->info.mpeg4.vop_coding_type = 0;
659 render->info.mpeg4.vop_fcode_forward = s->f_code;
660 render->info.mpeg4.vop_fcode_backward = s->b_code;
661 render->info.mpeg4.resync_marker_disable = !ctx->resync_marker;
662 render->info.mpeg4.interlaced = !s->progressive_sequence;
663 render->info.mpeg4.quant_type = s->mpeg_quant;
664 render->info.mpeg4.quarter_sample = s->quarter_sample;
665 render->info.mpeg4.short_video_header = s->avctx->codec->id == AV_CODEC_ID_H263;
666 render->info.mpeg4.rounding_control = s->no_rounding;
667 render->info.mpeg4.alternate_vertical_scan_flag = s->alternate_scan;
668 render->info.mpeg4.top_field_first = s->top_field_first;
669 for (i = 0; i < 64; ++i) {
670 render->info.mpeg4.intra_quantizer_matrix[i] = s->intra_matrix[i];
671 render->info.mpeg4.non_intra_quantizer_matrix[i] = s->inter_matrix[i];
673 render->info.mpeg4.forward_reference = VDP_INVALID_HANDLE;
674 render->info.mpeg4.backward_reference = VDP_INVALID_HANDLE;
676 switch (s->pict_type) {
677 case AV_PICTURE_TYPE_B:
678 next = (struct vdpau_render_state *)s->next_picture.f->data[0];
680 render->info.mpeg4.backward_reference = next->surface;
681 render->info.mpeg4.vop_coding_type = 2;
682 // no break here, going to set forward prediction
683 case AV_PICTURE_TYPE_P:
684 last = (struct vdpau_render_state *)s->last_picture.f->data[0];
686 render->info.mpeg4.forward_reference = last->surface;
689 ff_vdpau_add_data_chunk(s->current_picture_ptr->f->data[0], buf, buf_size);
691 ff_mpeg_draw_horiz_band(s, 0, s->avctx->height);
692 render->bitstream_buffers_used = 0;
694 #endif /* CONFIG_MPEG4_VDPAU_DECODER */
696 int av_vdpau_get_profile(AVCodecContext *avctx, VdpDecoderProfile *profile)
698 #define PROFILE(prof) \
700 *profile = VDP_DECODER_PROFILE_##prof; \
704 switch (avctx->codec_id) {
705 case AV_CODEC_ID_MPEG1VIDEO: PROFILE(MPEG1);
706 case AV_CODEC_ID_MPEG2VIDEO:
707 switch (avctx->profile) {
708 case FF_PROFILE_MPEG2_MAIN: PROFILE(MPEG2_MAIN);
709 case FF_PROFILE_MPEG2_SIMPLE: PROFILE(MPEG2_SIMPLE);
710 default: return AVERROR(EINVAL);
712 case AV_CODEC_ID_H263: PROFILE(MPEG4_PART2_ASP);
713 case AV_CODEC_ID_MPEG4:
714 switch (avctx->profile) {
715 case FF_PROFILE_MPEG4_SIMPLE: PROFILE(MPEG4_PART2_SP);
716 case FF_PROFILE_MPEG4_ADVANCED_SIMPLE: PROFILE(MPEG4_PART2_ASP);
717 default: return AVERROR(EINVAL);
719 case AV_CODEC_ID_H264:
720 switch (avctx->profile & ~FF_PROFILE_H264_INTRA) {
721 case FF_PROFILE_H264_BASELINE: PROFILE(H264_BASELINE);
722 case FF_PROFILE_H264_CONSTRAINED_BASELINE:
723 case FF_PROFILE_H264_MAIN: PROFILE(H264_MAIN);
724 case FF_PROFILE_H264_HIGH: PROFILE(H264_HIGH);
725 #ifdef VDP_DECODER_PROFILE_H264_EXTENDED
726 case FF_PROFILE_H264_EXTENDED: PROFILE(H264_EXTENDED);
728 default: return AVERROR(EINVAL);
730 case AV_CODEC_ID_WMV3:
731 case AV_CODEC_ID_VC1:
732 switch (avctx->profile) {
733 case FF_PROFILE_VC1_SIMPLE: PROFILE(VC1_SIMPLE);
734 case FF_PROFILE_VC1_MAIN: PROFILE(VC1_MAIN);
735 case FF_PROFILE_VC1_ADVANCED: PROFILE(VC1_ADVANCED);
736 default: return AVERROR(EINVAL);
739 return AVERROR(EINVAL);
743 AVVDPAUContext *av_vdpau_alloc_context(void)
745 return av_mallocz(sizeof(AVVDPAUContext));
748 int av_vdpau_bind_context(AVCodecContext *avctx, VdpDevice device,
749 VdpGetProcAddress *get_proc, unsigned flags)
751 VDPAUHWContext *hwctx;
753 if (flags & ~(AV_HWACCEL_FLAG_IGNORE_LEVEL|AV_HWACCEL_FLAG_ALLOW_HIGH_DEPTH))
754 return AVERROR(EINVAL);
756 if (av_reallocp(&avctx->hwaccel_context, sizeof(*hwctx)))
757 return AVERROR(ENOMEM);
759 hwctx = avctx->hwaccel_context;
761 memset(hwctx, 0, sizeof(*hwctx));
762 hwctx->context.decoder = VDP_INVALID_HANDLE;
763 hwctx->device = device;
764 hwctx->get_proc_address = get_proc;
765 hwctx->flags = flags;