diff options
author | NVIDIA Corporation <> | 2009-01-20 09:28:36 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-01-20 09:28:36 +0000 |
commit | c5b42f4a80b6668cb10d87b065f4e95bea6311c0 (patch) | |
tree | a9d43915c23959cef8fa7898affc6088df9b3d7c /libavcodec/imgconvert.c | |
parent | 15a4e8b85a89b398be27decca61455f5b839c6c6 (diff) | |
download | ffmpeg-c5b42f4a80b6668cb10d87b065f4e95bea6311c0.tar.gz |
Add VDPAU hardware accelerated decoding for WMV3 and VC1 which can
be used by video players.
Original patch by NVIDIA corporation.
Originally committed as revision 16699 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/imgconvert.c')
-rw-r--r-- | libavcodec/imgconvert.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c index 7c62b66db6..17c8473c3a 100644 --- a/libavcodec/imgconvert.c +++ b/libavcodec/imgconvert.c @@ -276,6 +276,12 @@ static const PixFmtInfo pix_fmt_info[PIX_FMT_NB] = { [PIX_FMT_VDPAU_H264] = { .name = "vdpau_h264", }, + [PIX_FMT_VDPAU_WMV3] = { + .name = "vdpau_wmv3", + }, + [PIX_FMT_VDPAU_VC1] = { + .name = "vdpau_vc1", + }, [PIX_FMT_UYYVYY411] = { .name = "uyyvyy411", .nb_channels = 1, |