[FFmpeg-cvslog] lavc: lowercase the FRWU codec name

ami_stuff git at videolan.org
Sun May 1 01:03:36 CEST 2011


ffmpeg | branch: master | ami_stuff <ami_stuff at o2.pl> | Sun May  1 00:38:25 2011 +0200| [8556406d38dc2307dd3f187c4528d64f5c350d5f] | committer: Stefano Sabatini

lavc: lowercase the FRWU codec name

This is more consistent with all the other codec names.

Signed-off-by: Stefano Sabatini <stefano.sabatini-lala at poste.it>

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

 libavcodec/frwu.c    |    4 ++--
 libavcodec/version.h |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavcodec/frwu.c b/libavcodec/frwu.c
index 306166b..51324c2 100644
--- a/libavcodec/frwu.c
+++ b/libavcodec/frwu.c
@@ -27,7 +27,7 @@
 static av_cold int decode_init(AVCodecContext *avctx)
 {
     if (avctx->width & 1) {
-        av_log(avctx, AV_LOG_ERROR, "FRWU needs even width\n");
+        av_log(avctx, AV_LOG_ERROR, "frwu needs even width\n");
         return -1;
     }
     avctx->pix_fmt = PIX_FMT_UYVY422;
@@ -110,7 +110,7 @@ static av_cold int decode_close(AVCodecContext *avctx)
 }
 
 AVCodec ff_frwu_decoder = {
-    "FRWU",
+    "frwu",
     AVMEDIA_TYPE_VIDEO,
     CODEC_ID_FRWU,
     0,
diff --git a/libavcodec/version.h b/libavcodec/version.h
index 10de67c..7eba7d2 100644
--- a/libavcodec/version.h
+++ b/libavcodec/version.h
@@ -22,7 +22,7 @@
 
 #define LIBAVCODEC_VERSION_MAJOR 53
 #define LIBAVCODEC_VERSION_MINOR  1
-#define LIBAVCODEC_VERSION_MICRO  1
+#define LIBAVCODEC_VERSION_MICRO  2
 
 #define LIBAVCODEC_VERSION_INT  AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
                                                LIBAVCODEC_VERSION_MINOR, \



More information about the ffmpeg-cvslog mailing list