summaryrefslogtreecommitdiff
path: root/libavcodec/intelh263dec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-03-23 03:56:43 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-03-23 03:56:43 +0100
commit6ee2911996ed5aea8fd49fd264cfb7930a7cd10e (patch)
tree124917f72c0c720c4e019a41dc917cdca0b7c5a2 /libavcodec/intelh263dec.c
parentacb8d655d7507e4af8c5ba8e0e3a8ed74ce30c94 (diff)
parent6f6c0294646bf992abd670d4c5c53c15a38346fd (diff)
downloadffmpeg-6ee2911996ed5aea8fd49fd264cfb7930a7cd10e.tar.gz
Merge remote-tracking branch 'qatar/master'
* qatar/master: lavc: drop ff_pixfmt_list_420 Conflicts: libavcodec/flvdec.c libavcodec/msmpeg4dec.c libavcodec/rv10.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/intelh263dec.c')
-rw-r--r--libavcodec/intelh263dec.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/intelh263dec.c b/libavcodec/intelh263dec.c
index 5da420243d..7ea62465fa 100644
--- a/libavcodec/intelh263dec.c
+++ b/libavcodec/intelh263dec.c
@@ -133,5 +133,8 @@ AVCodec ff_h263i_decoder = {
.close = ff_h263_decode_end,
.decode = ff_h263_decode_frame,
.capabilities = CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1,
- .pix_fmts = ff_pixfmt_list_420,
+ .pix_fmts = (const enum AVPixelFormat[]) {
+ AV_PIX_FMT_YUV420P,
+ AV_PIX_FMT_NONE
+ },
};