Commit c5b7ab02 authored by cehoyos's avatar cehoyos

Fix VC1 and WMV3 playback in MPlayer.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17587 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f991a68c
...@@ -4348,6 +4348,7 @@ AVCodec vc1_decoder = { ...@@ -4348,6 +4348,7 @@ AVCodec vc1_decoder = {
CODEC_CAP_DELAY, CODEC_CAP_DELAY,
NULL, NULL,
.long_name = NULL_IF_CONFIG_SMALL("SMPTE VC-1"), .long_name = NULL_IF_CONFIG_SMALL("SMPTE VC-1"),
.pix_fmts = ff_pixfmt_list_420
}; };
AVCodec wmv3_decoder = { AVCodec wmv3_decoder = {
...@@ -4362,6 +4363,7 @@ AVCodec wmv3_decoder = { ...@@ -4362,6 +4363,7 @@ AVCodec wmv3_decoder = {
CODEC_CAP_DELAY, CODEC_CAP_DELAY,
NULL, NULL,
.long_name = NULL_IF_CONFIG_SMALL("Windows Media Video 9"), .long_name = NULL_IF_CONFIG_SMALL("Windows Media Video 9"),
.pix_fmts = ff_pixfmt_list_420
}; };
#if CONFIG_WMV3_VDPAU_DECODER #if CONFIG_WMV3_VDPAU_DECODER
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment