cosmetics: Group .name and .long_name together in codec/format declarations

This commit is contained in:
Diego Biurrun
2013-10-03 22:57:53 +02:00
parent 49fe9c05f9
commit b2bed9325d
267 changed files with 338 additions and 338 deletions

View File

@@ -234,10 +234,10 @@ static int decode_frame(AVCodecContext *avctx,
AVCodec ff_targa_decoder = {
.name = "targa",
.long_name = NULL_IF_CONFIG_SMALL("Truevision Targa image"),
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_TARGA,
.priv_data_size = sizeof(TargaContext),
.decode = decode_frame,
.capabilities = CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("Truevision Targa image"),
};