From 6f6c0294646bf992abd670d4c5c53c15a38346fd Mon Sep 17 00:00:00 2001 From: Vittorio Giovara Date: Mon, 17 Mar 2014 18:03:47 +0100 Subject: lavc: drop ff_pixfmt_list_420 --- libavcodec/vc1dec.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'libavcodec/vc1dec.c') 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 -- cgit v1.2.3