From d688f39dc4bccbc2af7fa5296330646f8a7a5fa4 Mon Sep 17 00:00:00 2001 From: James Almer Date: Sun, 17 Jul 2016 13:10:27 -0300 Subject: cosmetics: fix some misspelled words Signed-off-by: James Almer --- libavformat/aviobuf.c | 2 +- libavformat/cinedec.c | 2 +- libavformat/mxfenc.c | 2 +- libavformat/psxstr.c | 2 +- libavformat/sdp.c | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'libavformat') diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c index 95793c92cd..31e72021f1 100644 --- a/libavformat/aviobuf.c +++ b/libavformat/aviobuf.c @@ -385,7 +385,7 @@ static inline int put_str16(AVIOContext *s, const char *str, const int be) ret += 2;) continue; invalid: - av_log(s, AV_LOG_ERROR, "Invaid UTF8 sequence in avio_put_str16%s\n", be ? "be" : "le"); + av_log(s, AV_LOG_ERROR, "Invalid UTF8 sequence in avio_put_str16%s\n", be ? "be" : "le"); err = AVERROR(EINVAL); if (!*(q-1)) break; diff --git a/libavformat/cinedec.c b/libavformat/cinedec.c index 0efedda1a3..32cccf566b 100644 --- a/libavformat/cinedec.c +++ b/libavformat/cinedec.c @@ -111,7 +111,7 @@ static int cine_read_header(AVFormatContext *avctx) compression = avio_rl16(pb); version = avio_rl16(pb); if (version != 1) { - avpriv_request_sample(avctx, "uknown version %i", version); + avpriv_request_sample(avctx, "unknown version %i", version); return AVERROR_INVALIDDATA; } diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c index 0c04a396cc..80318b8903 100644 --- a/libavformat/mxfenc.c +++ b/libavformat/mxfenc.c @@ -671,7 +671,7 @@ static uint64_t mxf_utf16len(const char *utf8_str) size += 2; continue; invalid: - av_log(NULL, AV_LOG_ERROR, "Invaid UTF8 sequence in mxf_utf16len\n\n"); + av_log(NULL, AV_LOG_ERROR, "Invalid UTF8 sequence in mxf_utf16len\n\n"); } size += 1; return size; diff --git a/libavformat/psxstr.c b/libavformat/psxstr.c index 63598fe72b..f7b9495bb9 100644 --- a/libavformat/psxstr.c +++ b/libavformat/psxstr.c @@ -211,7 +211,7 @@ static int str_read_packet(AVFormatContext *s, if(pkt->size != sector_count*VIDEO_DATA_CHUNK_SIZE){ if(pkt->data) - av_log(s, AV_LOG_ERROR, "missmatching sector_count\n"); + av_log(s, AV_LOG_ERROR, "mismatching sector_count\n"); av_packet_unref(pkt); if (av_new_packet(pkt, sector_count*VIDEO_DATA_CHUNK_SIZE)) return AVERROR(EIO); diff --git a/libavformat/sdp.c b/libavformat/sdp.c index 01b564b7be..4e37f65b09 100644 --- a/libavformat/sdp.c +++ b/libavformat/sdp.c @@ -641,7 +641,7 @@ static char *sdp_write_media_attributes(char *buff, int size, AVStream *st, int if (p->extradata_size) config = xiph_extradata2config(fmt, p); else - av_log(fmt, AV_LOG_ERROR, "Theora configuation info missing\n"); + av_log(fmt, AV_LOG_ERROR, "Theora configuration info missing\n"); if (!config) return NULL; -- cgit v1.2.3