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

@@ -804,11 +804,11 @@ static av_cold int decode_end(AVCodecContext *avctx)
AVCodec ff_exr_decoder = {
.name = "exr",
.long_name = NULL_IF_CONFIG_SMALL("OpenEXR image"),
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_EXR,
.priv_data_size = sizeof(EXRContext),
.close = decode_end,
.decode = decode_frame,
.capabilities = CODEC_CAP_DR1 | CODEC_CAP_FRAME_THREADS | CODEC_CAP_SLICE_THREADS,
.long_name = NULL_IF_CONFIG_SMALL("OpenEXR image"),
};