[Ffmpeg-cvslog] r8274 - in trunk: ffmpeg.c libavcodec/flicvideo.c libavformat/vocdec.c
alex
subversion
Wed Mar 7 01:27:23 CET 2007
Author: alex
Date: Wed Mar 7 01:27:23 2007
New Revision: 8274
Modified:
trunk/ffmpeg.c
trunk/libavcodec/flicvideo.c
trunk/libavformat/vocdec.c
Log:
typo: unkown->unknown
Modified: trunk/ffmpeg.c
==============================================================================
--- trunk/ffmpeg.c (original)
+++ trunk/ffmpeg.c Wed Mar 7 01:27:23 2007
@@ -3465,7 +3465,7 @@ static void opt_video_bsf(const char *ar
AVBitStreamFilterContext **bsfp;
if(!bsfc){
- fprintf(stderr, "Unkown bitstream filter %s\n", arg);
+ fprintf(stderr, "Unknown bitstream filter %s\n", arg);
exit(1);
}
@@ -3483,7 +3483,7 @@ static void opt_audio_bsf(const char *ar
AVBitStreamFilterContext **bsfp;
if(!bsfc){
- fprintf(stderr, "Unkown bitstream filter %s\n", arg);
+ fprintf(stderr, "Unknown bitstream filter %s\n", arg);
exit(1);
}
Modified: trunk/libavcodec/flicvideo.c
==============================================================================
--- trunk/libavcodec/flicvideo.c (original)
+++ trunk/libavcodec/flicvideo.c Wed Mar 7 01:27:23 2007
@@ -115,7 +115,7 @@ static int flic_decode_init(AVCodecConte
return -1;
break;
default :
- av_log(avctx, AV_LOG_ERROR, "Unkown FLC/FLX depth of %d Bpp is unsupported.\n",depth);
+ av_log(avctx, AV_LOG_ERROR, "Unknown FLC/FLX depth of %d Bpp is unsupported.\n",depth);
return -1;
}
Modified: trunk/libavformat/vocdec.c
==============================================================================
--- trunk/libavformat/vocdec.c (original)
+++ trunk/libavformat/vocdec.c Wed Mar 7 01:27:23 2007
@@ -51,7 +51,7 @@ static int voc_read_header(AVFormatConte
url_fskip(pb, 20);
header_size = get_le16(pb) - 22;
if (header_size != 4) {
- av_log(s, AV_LOG_ERROR, "unkown header size: %d\n", header_size);
+ av_log(s, AV_LOG_ERROR, "unknown header size: %d\n", header_size);
return AVERROR_NOTSUPP;
}
url_fskip(pb, header_size);
More information about the ffmpeg-cvslog
mailing list