summaryrefslogtreecommitdiff
path: root/libavcodec/frwu.c
diff options
context:
space:
mode:
authorPiotr Bandurski <ami_stuff@o2.pl>2012-02-01 20:23:33 +0000
committerDiego Biurrun <diego@biurrun.de>2012-02-02 18:44:52 +0100
commit3f57bde1f2a2538d46e1f26a1b0a773a89beaa67 (patch)
tree21177601ab908337458f1f7a914fcbf6026f8333 /libavcodec/frwu.c
parent7f19bdc2a29e0f9e3fff0da8c5fc1d2f7f972efc (diff)
frwu: lowercase the FRWU codec name
This is more consistent with all the other codec names. Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec/frwu.c')
-rw-r--r--libavcodec/frwu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/frwu.c b/libavcodec/frwu.c
index 1dbbc32514..c21c19a2ee 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,