Commit 90510251 authored by Paul B Mahol's avatar Paul B Mahol

lavc: remove duplicated .capabilities

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent c1804dc4
...@@ -291,7 +291,6 @@ AVCodec ff_dpx_decoder = { ...@@ -291,7 +291,6 @@ AVCodec ff_dpx_decoder = {
.init = decode_init, .init = decode_init,
.close = decode_end, .close = decode_end,
.decode = decode_frame, .decode = decode_frame,
.capabilities = CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("DPX image"), .long_name = NULL_IF_CONFIG_SMALL("DPX image"),
.capabilities = CODEC_CAP_DR1, .capabilities = CODEC_CAP_DR1,
}; };
...@@ -1141,7 +1141,6 @@ AVCodec ff_indeo3_decoder = { ...@@ -1141,7 +1141,6 @@ AVCodec ff_indeo3_decoder = {
.init = decode_init, .init = decode_init,
.close = decode_close, .close = decode_close,
.decode = decode_frame, .decode = decode_frame,
.capabilities = CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("Intel Indeo 3"), .long_name = NULL_IF_CONFIG_SMALL("Intel Indeo 3"),
.capabilities = CODEC_CAP_DR1, .capabilities = CODEC_CAP_DR1,
}; };
...@@ -267,7 +267,6 @@ AVCodec ff_sgi_decoder = { ...@@ -267,7 +267,6 @@ AVCodec ff_sgi_decoder = {
.init = sgi_init, .init = sgi_init,
.close = sgi_end, .close = sgi_end,
.decode = decode_frame, .decode = decode_frame,
.capabilities = CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("SGI image"), .long_name = NULL_IF_CONFIG_SMALL("SGI image"),
.capabilities = CODEC_CAP_DR1, .capabilities = CODEC_CAP_DR1,
}; };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment