cosmetics: group remaining .name and .long_name.

See b2bed9325.
This commit is contained in:
Clément Bœsch
2013-10-04 13:33:20 +00:00
committed by Clément Bœsch
parent ee77140afa
commit b46f19100b
60 changed files with 82 additions and 83 deletions

View File

@@ -119,14 +119,13 @@ static int decode_frame(AVCodecContext *avctx, void *data,
AVCodec ff_avrn_decoder = {
.name = "avrn",
.long_name = NULL_IF_CONFIG_SMALL("Avid AVI Codec"),
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_AVRN,
.priv_data_size = sizeof(AVRnContext),
.init = init,
.close = end,
.decode = decode_frame,
.long_name = NULL_IF_CONFIG_SMALL("Avid AVI Codec"),
.capabilities = CODEC_CAP_DR1,
.max_lowres = 3,
};