# HG changeset patch # User benoit # Date 1235749555 0 # Node ID 77cbbce1be946a170705ec8a84fe9261cde5e6e2 # Parent 3dbe483ce6c4de82a95b99d0772a60e018a0701d Add hardware acceleration hooks to H.264. Patch by Gwenol«± Beauchesne. diff -r 3dbe483ce6c4 -r 77cbbce1be94 h264.c --- a/h264.c Fri Feb 27 14:01:32 2009 +0000 +++ b/h264.c Fri Feb 27 15:45:55 2009 +0000 @@ -7491,6 +7491,11 @@ if((err = decode_slice_header(hx, h))) break; + if (s->avctx->hwaccel && h->current_slice == 1) { + if (s->avctx->hwaccel->start_frame(s->avctx, NULL, 0) < 0) + return -1; + } + s->current_picture_ptr->key_frame |= (hx->nal_unit_type == NAL_IDR_SLICE) || (h->sei_recovery_frame_cnt >= 0); @@ -7715,6 +7720,11 @@ h->prev_frame_num_offset= h->frame_num_offset; h->prev_frame_num= h->frame_num; + if (avctx->hwaccel) { + if (avctx->hwaccel->end_frame(avctx) < 0) + av_log(avctx, AV_LOG_ERROR, "hardware accelerator failed to decode picture\n"); + } + if (CONFIG_H264_VDPAU_DECODER && s->avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU) ff_vdpau_h264_picture_complete(s); @@ -8105,7 +8115,7 @@ /*CODEC_CAP_DRAW_HORIZ_BAND |*/ CODEC_CAP_DR1 | CODEC_CAP_DELAY, .flush= flush_dpb, .long_name = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"), - .pix_fmts= ff_pixfmt_list_420, + .pix_fmts= ff_hwaccel_pixfmt_list_420, }; #if CONFIG_H264_VDPAU_DECODER