[FFmpeg-cvslog] frwu: lowercase the FRWU codec name
Piotr Bandurski
git at videolan.org
Fri Feb 3 04:15:59 CET 2012
ffmpeg | branch: master | Piotr Bandurski <ami_stuff at o2.pl> | Wed Feb 1 20:23:33 2012 +0000| [3f57bde1f2a2538d46e1f26a1b0a773a89beaa67] | committer: Diego Biurrun
frwu: lowercase the FRWU codec name
This is more consistent with all the other codec names.
Signed-off-by: Paul B Mahol <onemda at gmail.com>
Signed-off-by: Diego Biurrun <diego at biurrun.de>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3f57bde1f2a2538d46e1f26a1b0a773a89beaa67
---
libavcodec/frwu.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavcodec/frwu.c b/libavcodec/frwu.c
index 1dbbc32..c21c19a 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 AVERROR(EINVAL);
}
avctx->pix_fmt = PIX_FMT_UYVY422;
@@ -114,7 +114,7 @@ static av_cold int decode_close(AVCodecContext *avctx)
}
AVCodec ff_frwu_decoder = {
- .name = "FRWU",
+ .name = "frwu",
.type = AVMEDIA_TYPE_VIDEO,
.id = CODEC_ID_FRWU,
.init = decode_init,
More information about the ffmpeg-cvslog
mailing list