From f174fbac3cb127273b8f3df8e05d7156ec1d7658 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Wed, 17 Oct 2012 21:39:04 +0200 Subject: lavc: add CODEC_CAP_DR1 to all video decoders missing them --- libavcodec/bink.c | 1 + libavcodec/dpx.c | 1 + libavcodec/indeo3.c | 1 + libavcodec/indeo4.c | 1 + libavcodec/indeo5.c | 1 + libavcodec/kgv1dec.c | 1 + libavcodec/sgidec.c | 1 + libavcodec/vb.c | 1 + libavcodec/yop.c | 1 + 9 files changed, 9 insertions(+) (limited to 'libavcodec') diff --git a/libavcodec/bink.c b/libavcodec/bink.c index b6c8c4b240..636bb20c3f 100644 --- a/libavcodec/bink.c +++ b/libavcodec/bink.c @@ -1336,4 +1336,5 @@ AVCodec ff_bink_decoder = { .close = decode_end, .decode = decode_frame, .long_name = NULL_IF_CONFIG_SMALL("Bink video"), + .capabilities = CODEC_CAP_DR1, }; diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c index f1a4e86c87..55f71c987c 100644 --- a/libavcodec/dpx.c +++ b/libavcodec/dpx.c @@ -243,4 +243,5 @@ AVCodec ff_dpx_decoder = { .close = decode_end, .decode = decode_frame, .long_name = NULL_IF_CONFIG_SMALL("DPX image"), + .capabilities = CODEC_CAP_DR1, }; diff --git a/libavcodec/indeo3.c b/libavcodec/indeo3.c index fc0d2bc11b..322d36047f 100644 --- a/libavcodec/indeo3.c +++ b/libavcodec/indeo3.c @@ -1114,4 +1114,5 @@ AVCodec ff_indeo3_decoder = { .decode = decode_frame, .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("Intel Indeo 3"), + .capabilities = CODEC_CAP_DR1, }; diff --git a/libavcodec/indeo4.c b/libavcodec/indeo4.c index b837ffb627..2eebc26513 100644 --- a/libavcodec/indeo4.c +++ b/libavcodec/indeo4.c @@ -607,4 +607,5 @@ AVCodec ff_indeo4_decoder = { .close = ff_ivi_decode_close, .decode = ff_ivi_decode_frame, .long_name = NULL_IF_CONFIG_SMALL("Intel Indeo Video Interactive 4"), + .capabilities = CODEC_CAP_DR1, }; diff --git a/libavcodec/indeo5.c b/libavcodec/indeo5.c index e9f7733f31..dc5f6f09ad 100644 --- a/libavcodec/indeo5.c +++ b/libavcodec/indeo5.c @@ -642,4 +642,5 @@ AVCodec ff_indeo5_decoder = { .close = ff_ivi_decode_close, .decode = ff_ivi_decode_frame, .long_name = NULL_IF_CONFIG_SMALL("Intel Indeo Video Interactive 5"), + .capabilities = CODEC_CAP_DR1, }; diff --git a/libavcodec/kgv1dec.c b/libavcodec/kgv1dec.c index 8f3294383d..bd362bfc23 100644 --- a/libavcodec/kgv1dec.c +++ b/libavcodec/kgv1dec.c @@ -191,4 +191,5 @@ AVCodec ff_kgv1_decoder = { .decode = decode_frame, .flush = decode_flush, .long_name = NULL_IF_CONFIG_SMALL("Kega Game Video"), + .capabilities = CODEC_CAP_DR1, }; diff --git a/libavcodec/sgidec.c b/libavcodec/sgidec.c index c220452953..412709cfd9 100644 --- a/libavcodec/sgidec.c +++ b/libavcodec/sgidec.c @@ -267,4 +267,5 @@ AVCodec ff_sgi_decoder = { .close = sgi_end, .decode = decode_frame, .long_name = NULL_IF_CONFIG_SMALL("SGI image"), + .capabilities = CODEC_CAP_DR1, }; diff --git a/libavcodec/vb.c b/libavcodec/vb.c index 39e14a008d..13f965ddbe 100644 --- a/libavcodec/vb.c +++ b/libavcodec/vb.c @@ -275,4 +275,5 @@ AVCodec ff_vb_decoder = { .close = decode_end, .decode = decode_frame, .long_name = NULL_IF_CONFIG_SMALL("Beam Software VB"), + .capabilities = CODEC_CAP_DR1, }; diff --git a/libavcodec/yop.c b/libavcodec/yop.c index cda9cad48d..f1ab5255fe 100644 --- a/libavcodec/yop.c +++ b/libavcodec/yop.c @@ -256,4 +256,5 @@ AVCodec ff_yop_decoder = { .close = yop_decode_close, .decode = yop_decode_frame, .long_name = NULL_IF_CONFIG_SMALL("Psygnosis YOP Video"), + .capabilities = CODEC_CAP_DR1, }; -- cgit v1.2.3