Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Bandurski <ami_stuff@o2.pl>2012-08-21 23:48:13 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-08-22 00:32:31 +0400
commitbc151aee60f0d108749d4cb85550067ee2840dc3 (patch)
treea00ea3c2de23eaebb0d705d35a6312bfe2419444 /libavcodec/avrndec.c
parente16fda9236bd6464e61baba31abae7852dceaa90 (diff)
avrn: lowercase "name" and expand"long_name"
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/avrndec.c')
-rw-r--r--libavcodec/avrndec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/avrndec.c b/libavcodec/avrndec.c
index d9f33d703c..8305028d06 100644
--- a/libavcodec/avrndec.c
+++ b/libavcodec/avrndec.c
@@ -118,14 +118,14 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
}
AVCodec ff_avrn_decoder = {
- .name = "AVRn",
+ .name = "avrn",
.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("AVRn"),
+ .long_name = NULL_IF_CONFIG_SMALL("Avid AVI Codec"),
.capabilities = CODEC_CAP_DR1,
};