diff options
author | Sebastien Zwickert <dilaroga@free.fr> | 2011-11-11 15:48:21 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2011-11-14 16:07:32 +0100 |
commit | ac3dbb4d5854e8884daca54fd1f187b7f3769183 (patch) | |
tree | de5de3a39c3a0401bde790a58ad0bdeeacfe9707 /libavutil/pixdesc.c | |
parent | d8a091698af2a80495b7a4377253781080946380 (diff) | |
download | ffmpeg-ac3dbb4d5854e8884daca54fd1f187b7f3769183.tar.gz |
hwaccel: OS X Video Decoder Acceleration (VDA) support.
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Diffstat (limited to 'libavutil/pixdesc.c')
-rw-r--r-- | libavutil/pixdesc.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavutil/pixdesc.c b/libavutil/pixdesc.c index f7df0eba65..e0616df828 100644 --- a/libavutil/pixdesc.c +++ b/libavutil/pixdesc.c @@ -740,6 +740,12 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[PIX_FMT_NB] = { .log2_chroma_h = 1, .flags = PIX_FMT_HWACCEL, }, + [PIX_FMT_VDA_VLD] = { + .name = "vda_vld", + .log2_chroma_w = 1, + .log2_chroma_h = 1, + .flags = PIX_FMT_HWACCEL, + }, [PIX_FMT_YUV420P9LE] = { .name = "yuv420p9le", .nb_components= 3, |