Commit bc151aee authored by Piotr Bandurski's avatar Piotr Bandurski Committed by Michael Niedermayer

avrn: lowercase "name" and expand"long_name"

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent e16fda92
...@@ -118,14 +118,14 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac ...@@ -118,14 +118,14 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
} }
AVCodec ff_avrn_decoder = { AVCodec ff_avrn_decoder = {
.name = "AVRn", .name = "avrn",
.type = AVMEDIA_TYPE_VIDEO, .type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_AVRN, .id = AV_CODEC_ID_AVRN,
.priv_data_size = sizeof(AVRnContext), .priv_data_size = sizeof(AVRnContext),
.init = init, .init = init,
.close = end, .close = end,
.decode = decode_frame, .decode = decode_frame,
.long_name = NULL_IF_CONFIG_SMALL("AVRn"), .long_name = NULL_IF_CONFIG_SMALL("Avid AVI Codec"),
.capabilities = CODEC_CAP_DR1, .capabilities = CODEC_CAP_DR1,
}; };
...@@ -1178,8 +1178,8 @@ static const AVCodecDescriptor codec_descriptors[] = { ...@@ -1178,8 +1178,8 @@ static const AVCodecDescriptor codec_descriptors[] = {
{ {
.id = AV_CODEC_ID_AVRN, .id = AV_CODEC_ID_AVRN,
.type = AVMEDIA_TYPE_VIDEO, .type = AVMEDIA_TYPE_VIDEO,
.name = "AVRn", .name = "avrn",
.long_name = NULL_IF_CONFIG_SMALL("AVRn"), .long_name = NULL_IF_CONFIG_SMALL("Avid AVI Codec"),
}, },
/* various PCM "codecs" */ /* various PCM "codecs" */
......
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