diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-01-20 09:31:07 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-01-20 09:31:07 +0000 |
commit | 0ab803957741fe73662dabb906ff96f3b4e81cd2 (patch) | |
tree | ac6fa1e184712ec9f052ac0e03c1f0cacdd96a4a /libswscale | |
parent | c5b42f4a80b6668cb10d87b065f4e95bea6311c0 (diff) | |
download | ffmpeg-0ab803957741fe73662dabb906ff96f3b4e81cd2.tar.gz |
Add PIX_FMT_VDPAU_WMV3 and PIX_FMT_VDPAU_VC1.
Originally committed as revision 28344 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/swscale.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c index 52b709aaa0..a22bf64b71 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -458,6 +458,10 @@ const char *sws_format_name(enum PixelFormat format) return "vdpau_mpeg1"; case PIX_FMT_VDPAU_MPEG2: return "vdpau_mpeg2"; + case PIX_FMT_VDPAU_WMV3: + return "vdpau_wmv3"; + case PIX_FMT_VDPAU_VC1: + return "vdpau_vc1"; default: return "Unknown format"; } |