* commit '36ef5369ee':
Replace all CODEC_ID_* with AV_CODEC_ID_*
lavc: add AV prefix to codec ids.
Conflicts:
doc/APIchanges
doc/examples/decoding_encoding.c
doc/examples/muxing.c
ffmpeg.c
ffprobe.c
ffserver.c
libavcodec/8svx.c
libavcodec/avcodec.h
libavcodec/dnxhd_parser.c
libavcodec/dvdsubdec.c
libavcodec/error_resilience.c
libavcodec/h263dec.c
libavcodec/libvorbisenc.c
libavcodec/mjpeg_parser.c
libavcodec/mjpegenc.c
libavcodec/mpeg12.c
libavcodec/mpeg4videodec.c
libavcodec/mpegvideo.c
libavcodec/mpegvideo_enc.c
libavcodec/pcm.c
libavcodec/r210dec.c
libavcodec/utils.c
libavcodec/v210dec.c
libavcodec/version.h
libavdevice/alsa-audio-dec.c
libavdevice/bktr.c
libavdevice/v4l2.c
libavformat/asfdec.c
libavformat/asfenc.c
libavformat/avformat.h
libavformat/avidec.c
libavformat/caf.c
libavformat/electronicarts.c
libavformat/flacdec.c
libavformat/flvdec.c
libavformat/flvenc.c
libavformat/framecrcenc.c
libavformat/img2.c
libavformat/img2dec.c
libavformat/img2enc.c
libavformat/ipmovie.c
libavformat/isom.c
libavformat/matroska.c
libavformat/matroskadec.c
libavformat/matroskaenc.c
libavformat/mov.c
libavformat/movenc.c
libavformat/mp3dec.c
libavformat/mpeg.c
libavformat/mpegts.c
libavformat/mxf.c
libavformat/mxfdec.c
libavformat/mxfenc.c
libavformat/nsvdec.c
libavformat/nut.c
libavformat/oggenc.c
libavformat/pmpdec.c
libavformat/rawdec.c
libavformat/rawenc.c
libavformat/riff.c
libavformat/sdp.c
libavformat/utils.c
libavformat/vocenc.c
libavformat/wtv.c
libavformat/xmv.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
93 lines
2.7 KiB
C
93 lines
2.7 KiB
C
/*
|
|
* VDA H264 HW acceleration.
|
|
*
|
|
* copyright (c) 2011 Sebastien Zwickert
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
#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;
|
|
|
|
vda_ctx->bitstream_size = 0;
|
|
|
|
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;
|
|
|
|
tmp = av_fast_realloc(vda_ctx->bitstream, &vda_ctx->ref_size, vda_ctx->bitstream_size+size+4);
|
|
if (!tmp)
|
|
return AVERROR(ENOMEM);
|
|
|
|
vda_ctx->bitstream = tmp;
|
|
|
|
AV_WB32(vda_ctx->bitstream+vda_ctx->bitstream_size, size);
|
|
memcpy(vda_ctx->bitstream+vda_ctx->bitstream_size+4, buffer, size);
|
|
|
|
vda_ctx->bitstream_size += size + 4;
|
|
|
|
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;
|
|
|
|
if (!vda_ctx->decoder || !vda_ctx->bitstream)
|
|
return -1;
|
|
|
|
status = ff_vda_decoder_decode(vda_ctx, vda_ctx->bitstream,
|
|
vda_ctx->bitstream_size,
|
|
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,
|
|
.id = AV_CODEC_ID_H264,
|
|
.pix_fmt = PIX_FMT_VDA_VLD,
|
|
.start_frame = start_frame,
|
|
.decode_slice = decode_slice,
|
|
.end_frame = end_frame,
|
|
.priv_data_size = 0,
|
|
};
|