Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorami_stuff <ami_stuff@o2.pl>2011-05-01 02:38:25 +0400
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2011-05-01 02:42:21 +0400
commit8556406d38dc2307dd3f187c4528d64f5c350d5f (patch)
tree861e10c626e2ee3ca8f6d181f57d9ab8de36dc03 /libavcodec/frwu.c
parentffb5a0d533498102c31aa131bc91a4cce868b0a8 (diff)
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.c4
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,