From b46f19100b08af54056abf6fb2351f32fb0d91bd Mon Sep 17 00:00:00 2001 From: Clément Bœsch Date: Fri, 4 Oct 2013 13:33:20 +0000 Subject: cosmetics: group remaining .name and .long_name. See b2bed9325. --- libavcodec/mvcdec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/mvcdec.c') diff --git a/libavcodec/mvcdec.c b/libavcodec/mvcdec.c index c4385fe5a5..423c7c43dc 100644 --- a/libavcodec/mvcdec.c +++ b/libavcodec/mvcdec.c @@ -260,6 +260,7 @@ static av_cold int mvc_decode_end(AVCodecContext *avctx) #if CONFIG_MVC1_DECODER AVCodec ff_mvc1_decoder = { .name = "mvc1", + .long_name = NULL_IF_CONFIG_SMALL("Silicon Graphics Motion Video Compressor 1"), .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_MVC1, .priv_data_size = sizeof(MvcContext), @@ -267,13 +268,13 @@ AVCodec ff_mvc1_decoder = { .close = mvc_decode_end, .decode = mvc_decode_frame, .capabilities = CODEC_CAP_DR1, - .long_name = NULL_IF_CONFIG_SMALL("Silicon Graphics Motion Video Compressor 1"), }; #endif #if CONFIG_MVC2_DECODER AVCodec ff_mvc2_decoder = { .name = "mvc2", + .long_name = NULL_IF_CONFIG_SMALL("Silicon Graphics Motion Video Compressor 2"), .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_MVC2, .priv_data_size = sizeof(MvcContext), @@ -281,6 +282,5 @@ AVCodec ff_mvc2_decoder = { .close = mvc_decode_end, .decode = mvc_decode_frame, .capabilities = CODEC_CAP_DR1, - .long_name = NULL_IF_CONFIG_SMALL("Silicon Graphics Motion Video Compressor 2"), }; #endif -- cgit v1.2.3