[FFmpeg-cvslog] avrn: lowercase "name" and expand"long_name"

Piotr Bandurski git at videolan.org
Tue Aug 21 22:36:00 CEST 2012


ffmpeg | branch: master | Piotr Bandurski <ami_stuff at o2.pl> | Tue Aug 21 21:48:13 2012 +0200| [bc151aee60f0d108749d4cb85550067ee2840dc3] | committer: Michael Niedermayer

avrn: lowercase "name" and expand"long_name"

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bc151aee60f0d108749d4cb85550067ee2840dc3
---

 libavcodec/avrndec.c    |    4 ++--
 libavcodec/codec_desc.c |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/libavcodec/avrndec.c b/libavcodec/avrndec.c
index d9f33d7..8305028 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,
 };
 
diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c
index 68e07bb..0cd4ca8 100644
--- a/libavcodec/codec_desc.c
+++ b/libavcodec/codec_desc.c
@@ -1178,8 +1178,8 @@ static const AVCodecDescriptor codec_descriptors[] = {
     {
         .id        = AV_CODEC_ID_AVRN,
         .type      = AVMEDIA_TYPE_VIDEO,
-        .name      = "AVRn",
-        .long_name = NULL_IF_CONFIG_SMALL("AVRn"),
+        .name      = "avrn",
+        .long_name = NULL_IF_CONFIG_SMALL("Avid AVI Codec"),
     },
 
     /* various PCM "codecs" */



More information about the ffmpeg-cvslog mailing list