2011-11-11 17:48:21 +03:00
|
|
|
/*
|
|
|
|
* VDA H.264 hardware acceleration
|
|
|
|
*
|
|
|
|
* copyright (c) 2011 Sebastien Zwickert
|
|
|
|
*
|
|
|
|
* This file is part of Libav.
|
|
|
|
*
|
|
|
|
* Libav 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.
|
|
|
|
*
|
|
|
|
* Libav 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 Libav; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "h264.h"
|
|
|
|
#include "vda_internal.h"
|
|
|
|
|
|
|
|
static int start_frame(AVCodecContext *avctx,
|
|
|
|
av_unused const uint8_t *buffer,
|
|
|
|
av_unused uint32_t size)
|
|
|
|
{
|
|
|
|
struct vda_context *vda_ctx = avctx->hwaccel_context;
|
|
|
|
|
|
|
|
if (!vda_ctx->decoder)
|
|
|
|
return -1;
|
|
|
|
|
2012-08-13 21:17:45 +03:00
|
|
|
vda_ctx->priv_bitstream_size = 0;
|
2011-11-11 17:48:21 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int decode_slice(AVCodecContext *avctx,
|
|
|
|
const uint8_t *buffer,
|
|
|
|
uint32_t size)
|
|
|
|
{
|
|
|
|
struct vda_context *vda_ctx = avctx->hwaccel_context;
|
|
|
|
void *tmp;
|
|
|
|
|
|
|
|
if (!vda_ctx->decoder)
|
|
|
|
return -1;
|
|
|
|
|
2012-08-13 21:17:45 +03:00
|
|
|
tmp = av_fast_realloc(vda_ctx->priv_bitstream,
|
|
|
|
&vda_ctx->priv_allocated_size,
|
|
|
|
vda_ctx->priv_bitstream_size + size + 4);
|
2011-11-11 17:48:21 +03:00
|
|
|
if (!tmp)
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
|
2012-08-13 21:17:45 +03:00
|
|
|
vda_ctx->priv_bitstream = tmp;
|
2011-11-11 17:48:21 +03:00
|
|
|
|
2012-08-13 21:17:45 +03:00
|
|
|
AV_WB32(vda_ctx->priv_bitstream + vda_ctx->priv_bitstream_size, size);
|
|
|
|
memcpy(vda_ctx->priv_bitstream + vda_ctx->priv_bitstream_size + 4, buffer, size);
|
2011-11-11 17:48:21 +03:00
|
|
|
|
2012-08-13 21:17:45 +03:00
|
|
|
vda_ctx->priv_bitstream_size += size + 4;
|
2011-11-11 17:48:21 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int end_frame(AVCodecContext *avctx)
|
|
|
|
{
|
|
|
|
H264Context *h = avctx->priv_data;
|
|
|
|
struct vda_context *vda_ctx = avctx->hwaccel_context;
|
|
|
|
AVFrame *frame = &h->s.current_picture_ptr->f;
|
|
|
|
int status;
|
|
|
|
|
2012-08-13 21:17:45 +03:00
|
|
|
if (!vda_ctx->decoder || !vda_ctx->priv_bitstream)
|
2011-11-11 17:48:21 +03:00
|
|
|
return -1;
|
|
|
|
|
2012-08-13 21:17:45 +03:00
|
|
|
status = ff_vda_decoder_decode(vda_ctx, vda_ctx->priv_bitstream,
|
|
|
|
vda_ctx->priv_bitstream_size,
|
2011-11-11 17:48:21 +03:00
|
|
|
frame->reordered_opaque);
|
|
|
|
|
|
|
|
if (status)
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "Failed to decode frame (%d)\n", status);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
AVHWAccel ff_h264_vda_hwaccel = {
|
|
|
|
.name = "h264_vda",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
2012-08-05 12:11:04 +03:00
|
|
|
.id = AV_CODEC_ID_H264,
|
2011-11-11 17:48:21 +03:00
|
|
|
.pix_fmt = PIX_FMT_VDA_VLD,
|
|
|
|
.start_frame = start_frame,
|
|
|
|
.decode_slice = decode_slice,
|
|
|
|
.end_frame = end_frame,
|
|
|
|
};
|