dxva2.c 5.35 KB
Newer Older
1 2 3 4 5
/*
 * DXVA2 HW acceleration.
 *
 * copyright (c) 2010 Laurent Aimar
 *
6
 * This file is part of Libav.
7
 *
8
 * Libav is free software; you can redistribute it and/or
9 10 11 12
 * 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.
 *
13
 * Libav is distributed in the hope that it will be useful,
14 15 16 17 18
 * 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
19
 * License along with Libav; if not, write to the Free Software
20 21 22
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

23 24 25 26 27 28 29 30
#include <assert.h>
#include <string.h>

#include "libavutil/log.h"
#include "libavutil/time.h"

#include "avcodec.h"
#include "mpegvideo.h"
31 32
#include "dxva2_internal.h"

33
void *ff_dxva2_get_surface(const AVFrame *frame)
34
{
35
    return frame->data[3];
36 37 38
}

unsigned ff_dxva2_get_surface_index(const struct dxva_context *ctx,
39
                                    const AVFrame *frame)
40
{
41
    void *surface = ff_dxva2_get_surface(frame);
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
    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;
61
    HRESULT hr;
62

63 64 65
    hr = IDirectXVideoDecoder_GetBuffer(ctx->decoder, type,
                                        &dxva_data, &dxva_size);
    if (FAILED(hr)) {
66
        av_log(avctx, AV_LOG_ERROR, "Failed to get a buffer for %u: 0x%lx\n",
67
               type, hr);
68 69 70 71 72 73 74 75 76 77 78 79
        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 {
80
        av_log(avctx, AV_LOG_ERROR, "Buffer for type %u was too small\n", type);
81 82
        result = -1;
    }
83 84 85 86

    hr = IDirectXVideoDecoder_ReleaseBuffer(ctx->decoder, type);
    if (FAILED(hr)) {
        av_log(avctx, AV_LOG_ERROR,
87
               "Failed to release buffer type %u: 0x%lx\n",
88
               type, hr);
89 90 91 92 93
        result = -1;
    }
    return result;
}

94
int ff_dxva2_common_end_frame(AVCodecContext *avctx, AVFrame *frame,
95 96 97 98 99 100 101 102 103
                              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];
104
    DXVA2_DecodeExecuteParams exec = { 0 };
105 106 107 108 109
    int result, runs = 0;
    HRESULT hr;

    do {
        hr = IDirectXVideoDecoder_BeginFrame(ctx->decoder,
110
                                             ff_dxva2_get_surface(frame),
111 112 113 114
                                             NULL);
        if (hr == E_PENDING)
            av_usleep(2000);
    } while (hr == E_PENDING && ++runs < 50);
115

116
    if (FAILED(hr)) {
117
        av_log(avctx, AV_LOG_ERROR, "Failed to begin frame: 0x%lx\n", hr);
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
        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;
160 161
    hr = IDirectXVideoDecoder_Execute(ctx->decoder, &exec);
    if (FAILED(hr)) {
162
        av_log(avctx, AV_LOG_ERROR, "Failed to execute: 0x%lx\n", hr);
163 164 165 166
        result = -1;
    }

end:
167 168
    hr = IDirectXVideoDecoder_EndFrame(ctx->decoder, NULL);
    if (FAILED(hr)) {
169
        av_log(avctx, AV_LOG_ERROR, "Failed to end frame: 0x%lx\n", hr);
170 171 172 173 174
        result = -1;
    }

    return result;
}