summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-10-29 20:06:52 +0000
committerPaul B Mahol <onemda@gmail.com>2012-10-29 20:06:52 +0000
commit90510251027f0f5fcb15121dd948bca7a3bbae0b (patch)
tree5d4c6d9add6b39e48fd86b628e0c5b8efc6ebef3 /libavcodec
parentc1804dc4ce164fc3993ca93a5c9649d73fb485b4 (diff)
lavc: remove duplicated .capabilities
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/dpx.c1
-rw-r--r--libavcodec/indeo3.c1
-rw-r--r--libavcodec/sgidec.c1
3 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c
index d9861579ef..bfc88b6d35 100644
--- a/libavcodec/dpx.c
+++ b/libavcodec/dpx.c
@@ -291,7 +291,6 @@ AVCodec ff_dpx_decoder = {
.init = decode_init,
.close = decode_end,
.decode = decode_frame,
- .capabilities = CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("DPX image"),
.capabilities = CODEC_CAP_DR1,
};
diff --git a/libavcodec/indeo3.c b/libavcodec/indeo3.c
index 1f231548cc..bd2bc3b11d 100644
--- a/libavcodec/indeo3.c
+++ b/libavcodec/indeo3.c
@@ -1141,7 +1141,6 @@ AVCodec ff_indeo3_decoder = {
.init = decode_init,
.close = decode_close,
.decode = decode_frame,
- .capabilities = CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("Intel Indeo 3"),
.capabilities = CODEC_CAP_DR1,
};
diff --git a/libavcodec/sgidec.c b/libavcodec/sgidec.c
index 1805e23574..bf6e5723f6 100644
--- a/libavcodec/sgidec.c
+++ b/libavcodec/sgidec.c
@@ -267,7 +267,6 @@ AVCodec ff_sgi_decoder = {
.init = sgi_init,
.close = sgi_end,
.decode = decode_frame,
- .capabilities = CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("SGI image"),
.capabilities = CODEC_CAP_DR1,
};