diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-03-24 01:59:02 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2014-05-11 15:00:03 +0200 |
commit | 67afcefb35932b420998f6f3fda46c7c85848a3f (patch) | |
tree | e69ca44ea9510ddd96112d9f2b3ecc20b06b07a2 /libavcodec/h264_slice.c | |
parent | 31a46750c7eafe6bce6a3e4f09853cd0a585292b (diff) | |
download | ffmpeg-67afcefb35932b420998f6f3fda46c7c85848a3f.tar.gz |
lavc: Add new VDA hwaccel
It leverages the new hwaccel 1.2 features:
- get_buffer2 is never called
- the internal context is automatically initialized/deinitialized
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Diffstat (limited to 'libavcodec/h264_slice.c')
-rw-r--r-- | libavcodec/h264_slice.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/h264_slice.c b/libavcodec/h264_slice.c index e727233c58..25f0f4d4af 100644 --- a/libavcodec/h264_slice.c +++ b/libavcodec/h264_slice.c @@ -153,6 +153,7 @@ static const enum AVPixelFormat h264_hwaccel_pixfmt_list_420[] = { #endif #if CONFIG_H264_VDA_HWACCEL AV_PIX_FMT_VDA_VLD, + AV_PIX_FMT_VDA, #endif #if CONFIG_H264_VDPAU_HWACCEL AV_PIX_FMT_VDPAU, @@ -170,6 +171,7 @@ static const enum AVPixelFormat h264_hwaccel_pixfmt_list_jpeg_420[] = { #endif #if CONFIG_H264_VDA_HWACCEL AV_PIX_FMT_VDA_VLD, + AV_PIX_FMT_VDA, #endif #if CONFIG_H264_VDPAU_HWACCEL AV_PIX_FMT_VDPAU, |