diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-03-17 18:03:47 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-03-23 01:56:58 +0100 |
commit | 6f6c0294646bf992abd670d4c5c53c15a38346fd (patch) | |
tree | 7ed6dd8e6c4732539bb94a675c88c73c0f799ac9 /libavcodec/vc1dec.c | |
parent | d5717bc4e9cc253a933ae8130eea3a9c8bc33c0b (diff) | |
download | ffmpeg-6f6c0294646bf992abd670d4c5c53c15a38346fd.tar.gz |
lavc: drop ff_pixfmt_list_420
Diffstat (limited to 'libavcodec/vc1dec.c')
-rw-r--r-- | libavcodec/vc1dec.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/libavcodec/vc1dec.c b/libavcodec/vc1dec.c index 49abd6297e..f8340eec99 100644 --- a/libavcodec/vc1dec.c +++ b/libavcodec/vc1dec.c @@ -6179,7 +6179,10 @@ AVCodec ff_wmv3image_decoder = { .decode = vc1_decode_frame, .capabilities = CODEC_CAP_DR1, .flush = vc1_sprite_flush, - .pix_fmts = ff_pixfmt_list_420 + .pix_fmts = (const enum AVPixelFormat[]) { + AV_PIX_FMT_YUV420P, + AV_PIX_FMT_NONE + }, }; #endif @@ -6195,6 +6198,9 @@ AVCodec ff_vc1image_decoder = { .decode = vc1_decode_frame, .capabilities = CODEC_CAP_DR1, .flush = vc1_sprite_flush, - .pix_fmts = ff_pixfmt_list_420 + .pix_fmts = (const enum AVPixelFormat[]) { + AV_PIX_FMT_YUV420P, + AV_PIX_FMT_NONE + }, }; #endif |