libavcodec/dxva2.c
85167c46
 /*
  * DXVA2 HW acceleration.
  *
  * copyright (c) 2010 Laurent Aimar
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * 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.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * 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
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
766df7ca
 #include <assert.h>
 #include <string.h>
 
 #include "libavutil/log.h"
9056d0c9
 #include "libavutil/time.h"
85167c46
 
766df7ca
 #include "avcodec.h"
 #include "mpegvideo.h"
85167c46
 #include "dxva2_internal.h"
 
29be9b53
 void *ff_dxva2_get_surface(const AVFrame *frame)
85167c46
 {
29be9b53
     return frame->data[3];
85167c46
 }
 
 unsigned ff_dxva2_get_surface_index(const struct dxva_context *ctx,
29be9b53
                                     const AVFrame *frame)
85167c46
 {
29be9b53
     void *surface = ff_dxva2_get_surface(frame);
85167c46
     unsigned i;
 
     for (i = 0; i < ctx->surface_count; i++)
         if (ctx->surface[i] == surface)
             return i;
 
     assert(0);
     return 0;
 }
 
 int ff_dxva2_commit_buffer(AVCodecContext *avctx,
                            struct dxva_context *ctx,
                            DXVA2_DecodeBufferDesc *dsc,
                            unsigned type, const void *data, unsigned size,
                            unsigned mb_count)
 {
     void     *dxva_data;
     unsigned dxva_size;
     int      result;
9d80b1ae
     HRESULT hr;
85167c46
 
9d80b1ae
     hr = IDirectXVideoDecoder_GetBuffer(ctx->decoder, type,
                                         &dxva_data, &dxva_size);
     if (FAILED(hr)) {
ade4ecb4
         av_log(avctx, AV_LOG_ERROR, "Failed to get a buffer for %u: 0x%lx\n",
9d80b1ae
                type, hr);
85167c46
         return -1;
     }
     if (size <= dxva_size) {
         memcpy(dxva_data, data, size);
 
         memset(dsc, 0, sizeof(*dsc));
         dsc->CompressedBufferType = type;
         dsc->DataSize             = size;
         dsc->NumMBsInBuffer       = mb_count;
 
         result = 0;
     } else {
ade4ecb4
         av_log(avctx, AV_LOG_ERROR, "Buffer for type %u was too small\n", type);
85167c46
         result = -1;
     }
9d80b1ae
 
     hr = IDirectXVideoDecoder_ReleaseBuffer(ctx->decoder, type);
     if (FAILED(hr)) {
         av_log(avctx, AV_LOG_ERROR,
ade4ecb4
                "Failed to release buffer type %u: 0x%lx\n",
9d80b1ae
                type, hr);
85167c46
         result = -1;
     }
     return result;
 }
 
29be9b53
 int ff_dxva2_common_end_frame(AVCodecContext *avctx, AVFrame *frame,
85167c46
                               const void *pp, unsigned pp_size,
                               const void *qm, unsigned qm_size,
                               int (*commit_bs_si)(AVCodecContext *,
                                                   DXVA2_DecodeBufferDesc *bs,
                                                   DXVA2_DecodeBufferDesc *slice))
 {
     struct dxva_context *ctx = avctx->hwaccel_context;
     unsigned               buffer_count = 0;
     DXVA2_DecodeBufferDesc buffer[4];
a92be9b8
     DXVA2_DecodeExecuteParams exec = { 0 };
5b2b23f2
     int result, runs = 0;
     HRESULT hr;
 
     do {
         hr = IDirectXVideoDecoder_BeginFrame(ctx->decoder,
29be9b53
                                              ff_dxva2_get_surface(frame),
5b2b23f2
                                              NULL);
         if (hr == E_PENDING)
             av_usleep(2000);
     } while (hr == E_PENDING && ++runs < 50);
85167c46
 
5b2b23f2
     if (FAILED(hr)) {
ade4ecb4
         av_log(avctx, AV_LOG_ERROR, "Failed to begin frame: 0x%lx\n", hr);
85167c46
         return -1;
     }
 
     result = ff_dxva2_commit_buffer(avctx, ctx, &buffer[buffer_count],
                                     DXVA2_PictureParametersBufferType,
                                     pp, pp_size, 0);
     if (result) {
         av_log(avctx, AV_LOG_ERROR,
                "Failed to add picture parameter buffer\n");
         goto end;
     }
     buffer_count++;
 
     if (qm_size > 0) {
         result = ff_dxva2_commit_buffer(avctx, ctx, &buffer[buffer_count],
                                         DXVA2_InverseQuantizationMatrixBufferType,
                                         qm, qm_size, 0);
         if (result) {
             av_log(avctx, AV_LOG_ERROR,
                    "Failed to add inverse quantization matrix buffer\n");
             goto end;
         }
         buffer_count++;
     }
 
     result = commit_bs_si(avctx,
                           &buffer[buffer_count + 0],
                           &buffer[buffer_count + 1]);
     if (result) {
         av_log(avctx, AV_LOG_ERROR,
                "Failed to add bitstream or slice control buffer\n");
         goto end;
     }
     buffer_count += 2;
 
     /* TODO Film Grain when possible */
 
     assert(buffer_count == 1 + (qm_size > 0) + 2);
 
     exec.NumCompBuffers      = buffer_count;
     exec.pCompressedBuffers  = buffer;
     exec.pExtensionData      = NULL;
9d80b1ae
     hr = IDirectXVideoDecoder_Execute(ctx->decoder, &exec);
     if (FAILED(hr)) {
ade4ecb4
         av_log(avctx, AV_LOG_ERROR, "Failed to execute: 0x%lx\n", hr);
85167c46
         result = -1;
     }
 
 end:
9d80b1ae
     hr = IDirectXVideoDecoder_EndFrame(ctx->decoder, NULL);
     if (FAILED(hr)) {
ade4ecb4
         av_log(avctx, AV_LOG_ERROR, "Failed to end frame: 0x%lx\n", hr);
85167c46
         result = -1;
     }
 
     return result;
 }