libavcodec/vdpau_h264.c
51b56a07
 /*
  * MPEG-4 Part 10 / AVC / H.264 HW decode acceleration through VDPAU
  *
  * Copyright (c) 2008 NVIDIA
  * Copyright (c) 2013 RĂ©mi Denis-Courmont
  *
53c2f401
  * This file is part of FFmpeg.
51b56a07
  *
53c2f401
  * FFmpeg is free software; you can redistribute it and/or
51b56a07
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
53c2f401
  * FFmpeg is distributed in the hope that it will be useful,
51b56a07
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
53c2f401
  * License along with FFmpeg; if not, write to the Free Software Foundation,
51b56a07
  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #include <vdpau/vdpau.h>
 
 #include "avcodec.h"
89ac99ba
 #include "internal.h"
51b56a07
 #include "h264.h"
e0c16e4e
 #include "mpegutils.h"
51b56a07
 #include "vdpau.h"
 #include "vdpau_internal.h"
 
 static int32_t h264_foc(int foc)
 {
     if (foc == INT_MAX)
         foc = 0;
     return foc;
 }
 
 static void vdpau_h264_clear_rf(VdpReferenceFrameH264 *rf)
 {
     rf->surface             = VDP_INVALID_HANDLE;
     rf->is_long_term        = VDP_FALSE;
     rf->top_is_reference    = VDP_FALSE;
     rf->bottom_is_reference = VDP_FALSE;
     rf->field_order_cnt[0]  = 0;
     rf->field_order_cnt[1]  = 0;
     rf->frame_idx           = 0;
 }
 
9b749c82
 static void vdpau_h264_set_rf(VdpReferenceFrameH264 *rf, H264Picture *pic,
51b56a07
                               int pic_structure)
 {
a0f29460
     VdpVideoSurface surface = ff_vdpau_get_surface_id(pic->f);
51b56a07
 
     if (pic_structure == 0)
759001c5
         pic_structure = pic->reference;
51b56a07
 
     rf->surface             = surface;
759001c5
     rf->is_long_term        = pic->reference && pic->long_ref;
51b56a07
     rf->top_is_reference    = (pic_structure & PICT_TOP_FIELD)    != 0;
     rf->bottom_is_reference = (pic_structure & PICT_BOTTOM_FIELD) != 0;
     rf->field_order_cnt[0]  = h264_foc(pic->field_poc[0]);
     rf->field_order_cnt[1]  = h264_foc(pic->field_poc[1]);
     rf->frame_idx           = pic->long_ref ? pic->pic_id : pic->frame_num;
 }
 
 static void vdpau_h264_set_reference_frames(AVCodecContext *avctx)
 {
     H264Context * const h = avctx->priv_data;
2852740e
     struct vdpau_picture_context *pic_ctx = h->cur_pic_ptr->hwaccel_picture_private;
     VdpPictureInfoH264 *info = &pic_ctx->info.h264;
51b56a07
     int list;
 
     VdpReferenceFrameH264 *rf = &info->referenceFrames[0];
 #define H264_RF_COUNT FF_ARRAY_ELEMS(info->referenceFrames)
 
     for (list = 0; list < 2; ++list) {
9b749c82
         H264Picture **lp = list ? h->long_ref : h->short_ref;
51b56a07
         int i, ls    = list ? 16          : h->short_ref_count;
 
         for (i = 0; i < ls; ++i) {
9b749c82
             H264Picture *pic = lp[i];
51b56a07
             VdpReferenceFrameH264 *rf2;
             VdpVideoSurface surface_ref;
             int pic_frame_idx;
 
759001c5
             if (!pic || !pic->reference)
51b56a07
                 continue;
             pic_frame_idx = pic->long_ref ? pic->pic_id : pic->frame_num;
a0f29460
             surface_ref = ff_vdpau_get_surface_id(pic->f);
51b56a07
 
             rf2 = &info->referenceFrames[0];
             while (rf2 != rf) {
                 if ((rf2->surface      == surface_ref)   &&
                     (rf2->is_long_term == pic->long_ref) &&
                     (rf2->frame_idx    == pic_frame_idx))
                     break;
                 ++rf2;
             }
             if (rf2 != rf) {
759001c5
                 rf2->top_is_reference    |= (pic->reference & PICT_TOP_FIELD)    ? VDP_TRUE : VDP_FALSE;
                 rf2->bottom_is_reference |= (pic->reference & PICT_BOTTOM_FIELD) ? VDP_TRUE : VDP_FALSE;
51b56a07
                 continue;
             }
 
             if (rf >= &info->referenceFrames[H264_RF_COUNT])
                 continue;
 
759001c5
             vdpau_h264_set_rf(rf, pic, pic->reference);
51b56a07
             ++rf;
         }
     }
 
     for (; rf < &info->referenceFrames[H264_RF_COUNT]; ++rf)
         vdpau_h264_clear_rf(rf);
 }
 
 static int vdpau_h264_start_frame(AVCodecContext *avctx,
                                   const uint8_t *buffer, uint32_t size)
 {
     H264Context * const h = avctx->priv_data;
9b749c82
     H264Picture *pic = h->cur_pic_ptr;
2852740e
     struct vdpau_picture_context *pic_ctx = pic->hwaccel_picture_private;
     VdpPictureInfoH264 *info = &pic_ctx->info.h264;
737d35e3
 #ifdef VDP_DECODER_PROFILE_H264_HIGH_444_PREDICTIVE
     VdpPictureInfoH264Predictive *info2 = &pic_ctx->info.h264_predictive;
 #endif
51b56a07
 
     /* init VdpPictureInfoH264 */
     info->slice_count                            = 0;
     info->field_order_cnt[0]                     = h264_foc(pic->field_poc[0]);
     info->field_order_cnt[1]                     = h264_foc(pic->field_poc[1]);
     info->is_reference                           = h->nal_ref_idc != 0;
     info->frame_num                              = h->frame_num;
2c541554
     info->field_pic_flag                         = h->picture_structure != PICT_FRAME;
     info->bottom_field_flag                      = h->picture_structure == PICT_BOTTOM_FIELD;
51b56a07
     info->num_ref_frames                         = h->sps.ref_frame_count;
     info->mb_adaptive_frame_field_flag           = h->sps.mb_aff && !info->field_pic_flag;
     info->constrained_intra_pred_flag            = h->pps.constrained_intra_pred;
     info->weighted_pred_flag                     = h->pps.weighted_pred;
     info->weighted_bipred_idc                    = h->pps.weighted_bipred_idc;
     info->frame_mbs_only_flag                    = h->sps.frame_mbs_only_flag;
     info->transform_8x8_mode_flag                = h->pps.transform_8x8_mode;
     info->chroma_qp_index_offset                 = h->pps.chroma_qp_index_offset[0];
     info->second_chroma_qp_index_offset          = h->pps.chroma_qp_index_offset[1];
     info->pic_init_qp_minus26                    = h->pps.init_qp - 26;
     info->num_ref_idx_l0_active_minus1           = h->pps.ref_count[0] - 1;
     info->num_ref_idx_l1_active_minus1           = h->pps.ref_count[1] - 1;
     info->log2_max_frame_num_minus4              = h->sps.log2_max_frame_num - 4;
     info->pic_order_cnt_type                     = h->sps.poc_type;
     info->log2_max_pic_order_cnt_lsb_minus4      = h->sps.poc_type ? 0 : h->sps.log2_max_poc_lsb - 4;
     info->delta_pic_order_always_zero_flag       = h->sps.delta_pic_order_always_zero_flag;
     info->direct_8x8_inference_flag              = h->sps.direct_8x8_inference_flag;
737d35e3
 #ifdef VDP_DECODER_PROFILE_H264_HIGH_444_PREDICTIVE
     info2->qpprime_y_zero_transform_bypass_flag  = h->sps.transform_bypass;
     info2->separate_colour_plane_flag            = h->sps.residual_color_transform_flag;
 #endif
51b56a07
     info->entropy_coding_mode_flag               = h->pps.cabac;
     info->pic_order_present_flag                 = h->pps.pic_order_present;
     info->deblocking_filter_control_present_flag = h->pps.deblocking_filter_parameters_present;
     info->redundant_pic_cnt_present_flag         = h->pps.redundant_pic_cnt_present;
 
     memcpy(info->scaling_lists_4x4, h->pps.scaling_matrix4,
            sizeof(info->scaling_lists_4x4));
     memcpy(info->scaling_lists_8x8[0], h->pps.scaling_matrix8[0],
            sizeof(info->scaling_lists_8x8[0]));
     memcpy(info->scaling_lists_8x8[1], h->pps.scaling_matrix8[3],
            sizeof(info->scaling_lists_8x8[1]));
 
     vdpau_h264_set_reference_frames(avctx);
 
7948a51b
     return ff_vdpau_common_start_frame(pic_ctx, buffer, size);
51b56a07
 }
 
 static const uint8_t start_code_prefix[3] = { 0x00, 0x00, 0x01 };
 
 static int vdpau_h264_decode_slice(AVCodecContext *avctx,
                                    const uint8_t *buffer, uint32_t size)
 {
2852740e
     H264Context *h = avctx->priv_data;
9b749c82
     H264Picture *pic = h->cur_pic_ptr;
2852740e
     struct vdpau_picture_context *pic_ctx = pic->hwaccel_picture_private;
51b56a07
     int val;
 
7948a51b
     val = ff_vdpau_add_buffer(pic_ctx, start_code_prefix, 3);
51b56a07
     if (val)
         return val;
 
7948a51b
     val = ff_vdpau_add_buffer(pic_ctx, buffer, size);
51b56a07
     if (val)
         return val;
 
2852740e
     pic_ctx->info.h264.slice_count++;
51b56a07
     return 0;
 }
 
2c541554
 static int vdpau_h264_end_frame(AVCodecContext *avctx)
 {
     H264Context *h = avctx->priv_data;
95eb35f3
     H264SliceContext *sl = &h->slice_ctx[0];
9b749c82
     H264Picture *pic = h->cur_pic_ptr;
2852740e
     struct vdpau_picture_context *pic_ctx = pic->hwaccel_picture_private;
fcc10226
     int val;
2c541554
 
a0f29460
     val = ff_vdpau_common_end_frame(avctx, pic->f, pic_ctx);
fcc10226
     if (val < 0)
         return val;
23bc1351
 
95eb35f3
     ff_h264_draw_horiz_band(h, sl, 0, h->avctx->height);
2c541554
     return 0;
 }
 
89ac99ba
 static int vdpau_h264_init(AVCodecContext *avctx)
 {
     VdpDecoderProfile profile;
     uint32_t level = avctx->level;
 
     switch (avctx->profile & ~FF_PROFILE_H264_INTRA) {
     case FF_PROFILE_H264_BASELINE:
         profile = VDP_DECODER_PROFILE_H264_BASELINE;
         break;
26ab504a
     case FF_PROFILE_H264_CONSTRAINED_BASELINE:
559fa0d4
 #ifdef VDP_DECODER_PROFILE_H264_CONSTRAINED_BASELINE
         profile = VDP_DECODER_PROFILE_H264_CONSTRAINED_BASELINE;
         break;
 #endif
89ac99ba
     case FF_PROFILE_H264_MAIN:
         profile = VDP_DECODER_PROFILE_H264_MAIN;
         break;
     case FF_PROFILE_H264_HIGH:
         profile = VDP_DECODER_PROFILE_H264_HIGH;
         break;
8502c1e9
 #ifdef VDP_DECODER_PROFILE_H264_EXTENDED
     case FF_PROFILE_H264_EXTENDED:
         profile = VDP_DECODER_PROFILE_H264_EXTENDED;
         break;
 #endif
737d35e3
     case FF_PROFILE_H264_HIGH_10:
         /* XXX: High 10 can be treated as High so long as only 8-bits per
          * formats are supported. */
         profile = VDP_DECODER_PROFILE_H264_HIGH;
         break;
 #ifdef VDP_DECODER_PROFILE_H264_HIGH_444_PREDICTIVE
     case FF_PROFILE_H264_HIGH_422:
     case FF_PROFILE_H264_HIGH_444_PREDICTIVE:
     case FF_PROFILE_H264_CAVLC_444:
         profile = VDP_DECODER_PROFILE_H264_HIGH_444_PREDICTIVE;
         break;
 #endif
89ac99ba
     default:
         return AVERROR(ENOTSUP);
     }
 
     if ((avctx->profile & FF_PROFILE_H264_INTRA) && avctx->level == 11)
         level = VDP_DECODER_LEVEL_H264_1b;
 
     return ff_vdpau_common_init(avctx, profile, level);
 }
 
51b56a07
 AVHWAccel ff_h264_vdpau_hwaccel = {
     .name           = "h264_vdpau",
     .type           = AVMEDIA_TYPE_VIDEO,
     .id             = AV_CODEC_ID_H264,
     .pix_fmt        = AV_PIX_FMT_VDPAU,
     .start_frame    = vdpau_h264_start_frame,
2c541554
     .end_frame      = vdpau_h264_end_frame,
51b56a07
     .decode_slice   = vdpau_h264_decode_slice,
a871ef0c
     .frame_priv_data_size = sizeof(struct vdpau_picture_context),
89ac99ba
     .init           = vdpau_h264_init,
     .uninit         = ff_vdpau_common_uninit,
     .priv_data_size = sizeof(VDPAUContext),
51b56a07
 };