diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2007-03-07 00:27:23 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2007-03-07 00:27:23 +0000 |
commit | cbc09a7d5a570fff61a059c0a6f910f275805e97 (patch) | |
tree | a047059dfcff7efdbcd8261e762d6731db520729 | |
parent | 73d6ca4feefc45a3be6fde453705978b5523c575 (diff) | |
download | ffmpeg-cbc09a7d5a570fff61a059c0a6f910f275805e97.tar.gz |
typo: unkown->unknown
Originally committed as revision 8274 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | ffmpeg.c | 4 | ||||
-rw-r--r-- | libavcodec/flicvideo.c | 2 | ||||
-rw-r--r-- | libavformat/vocdec.c | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -3465,7 +3465,7 @@ static void opt_video_bsf(const char *arg) 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 *arg) AVBitStreamFilterContext **bsfp; if(!bsfc){ - fprintf(stderr, "Unkown bitstream filter %s\n", arg); + fprintf(stderr, "Unknown bitstream filter %s\n", arg); exit(1); } diff --git a/libavcodec/flicvideo.c b/libavcodec/flicvideo.c index 43a6f26dd6..b60e0b1c23 100644 --- a/libavcodec/flicvideo.c +++ b/libavcodec/flicvideo.c @@ -115,7 +115,7 @@ static int flic_decode_init(AVCodecContext *avctx) 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; } diff --git a/libavformat/vocdec.c b/libavformat/vocdec.c index 21ef8c2071..bc9205faa0 100644 --- a/libavformat/vocdec.c +++ b/libavformat/vocdec.c @@ -51,7 +51,7 @@ static int voc_read_header(AVFormatContext *s, AVFormatParameters *ap) 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); |