diff options
author | ami_stuff <ami_stuff@o2.pl> | 2011-05-01 00:38:25 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-01 00:42:21 +0200 |
commit | 8556406d38dc2307dd3f187c4528d64f5c350d5f (patch) | |
tree | 861e10c626e2ee3ca8f6d181f57d9ab8de36dc03 /libavcodec/frwu.c | |
parent | ffb5a0d533498102c31aa131bc91a4cce868b0a8 (diff) | |
download | ffmpeg-8556406d38dc2307dd3f187c4528d64f5c350d5f.tar.gz |
lavc: lowercase the FRWU codec name
This is more consistent with all the other codec names.
Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
Diffstat (limited to 'libavcodec/frwu.c')
-rw-r--r-- | libavcodec/frwu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/frwu.c b/libavcodec/frwu.c index 306166bdc5..51324c2765 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, |