[FFmpeg-cvslog] r17594 - trunk/libavcodec/vc1.c
cehoyos
subversion
Thu Feb 26 00:58:53 CET 2009
Author: cehoyos
Date: Thu Feb 26 00:58:52 2009
New Revision: 17594
Log:
Apply correct pix_fmts to WMV3_VDPAU and VC1_VDPAU.
Modified:
trunk/libavcodec/vc1.c
Modified: trunk/libavcodec/vc1.c
==============================================================================
--- trunk/libavcodec/vc1.c Thu Feb 26 00:24:34 2009 (r17593)
+++ trunk/libavcodec/vc1.c Thu Feb 26 00:58:52 2009 (r17594)
@@ -4379,6 +4379,7 @@ AVCodec wmv3_vdpau_decoder = {
CODEC_CAP_DR1 | CODEC_CAP_DELAY | CODEC_CAP_HWACCEL_VDPAU,
NULL,
.long_name = NULL_IF_CONFIG_SMALL("Windows Media Video 9 VDPAU"),
+ .pix_fmts = (enum PixelFormat[]){PIX_FMT_VDPAU_WMV3, PIX_FMT_NONE}
};
#endif
@@ -4395,5 +4396,6 @@ AVCodec vc1_vdpau_decoder = {
CODEC_CAP_DR1 | CODEC_CAP_DELAY | CODEC_CAP_HWACCEL_VDPAU,
NULL,
.long_name = NULL_IF_CONFIG_SMALL("SMPTE VC-1 VDPAU"),
+ .pix_fmts = (enum PixelFormat[]){PIX_FMT_VDPAU_VC1, PIX_FMT_NONE}
};
#endif
More information about the ffmpeg-cvslog
mailing list