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>
This commit is contained in:
ami_stuff 2011-05-01 00:38:25 +02:00 committed by Stefano Sabatini
parent ffb5a0d533
commit 8556406d38
2 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@
static av_cold int decode_init(AVCodecContext *avctx) static av_cold int decode_init(AVCodecContext *avctx)
{ {
if (avctx->width & 1) { 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; return -1;
} }
avctx->pix_fmt = PIX_FMT_UYVY422; avctx->pix_fmt = PIX_FMT_UYVY422;
@ -110,7 +110,7 @@ static av_cold int decode_close(AVCodecContext *avctx)
} }
AVCodec ff_frwu_decoder = { AVCodec ff_frwu_decoder = {
"FRWU", "frwu",
AVMEDIA_TYPE_VIDEO, AVMEDIA_TYPE_VIDEO,
CODEC_ID_FRWU, CODEC_ID_FRWU,
0, 0,

View File

@ -22,7 +22,7 @@
#define LIBAVCODEC_VERSION_MAJOR 53 #define LIBAVCODEC_VERSION_MAJOR 53
#define LIBAVCODEC_VERSION_MINOR 1 #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, \ #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
LIBAVCODEC_VERSION_MINOR, \ LIBAVCODEC_VERSION_MINOR, \