summaryrefslogtreecommitdiff
path: root/libavformat/nut.c
diff options
context:
space:
mode:
authorMike Melanson <mike@multimedia.cx>2005-04-24 17:21:11 +0000
committerMike Melanson <mike@multimedia.cx>2005-04-24 17:21:11 +0000
commit160d679c075e9f575f96ea2c2c000545a49916a0 (patch)
tree5254d6f53383d530989b1fa99e72f6da3a391b27 /libavformat/nut.c
parent93ccc14df57008117631e369ba2e846ef4950a16 (diff)
Ministry of English Composition, reporting for duty (and the word is "skipped", not "skiped"; "skiped" would rhyme with "hyped")
Originally committed as revision 4153 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/nut.c')
-rw-r--r--libavformat/nut.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/nut.c b/libavformat/nut.c
index 3a83d4f6b3..89a6aa720f 100644
--- a/libavformat/nut.c
+++ b/libavformat/nut.c
@@ -931,7 +931,7 @@ static int decode_main_header(NUTContext *nut){
}
if(check_checksum(bc)){
- av_log(s, AV_LOG_ERROR, "Main header checksum missmatch\n");
+ av_log(s, AV_LOG_ERROR, "Main header checksum mismatch\n");
return -1;
}
@@ -1012,7 +1012,7 @@ static int decode_stream_header(NUTContext *nut){
st->codec.channels = get_v(bc);
}
if(check_checksum(bc)){
- av_log(s, AV_LOG_ERROR, "Stream header %d checksum missmatch\n", stream_id);
+ av_log(s, AV_LOG_ERROR, "Stream header %d checksum mismatch\n", stream_id);
return -1;
}
av_set_pts_info(s->streams[stream_id], 60, denom, nom);
@@ -1067,7 +1067,7 @@ static int decode_info_header(NUTContext *nut){
}
}
if(check_checksum(bc)){
- av_log(s, AV_LOG_ERROR, "Info header checksum missmatch\n");
+ av_log(s, AV_LOG_ERROR, "Info header checksum mismatch\n");
return -1;
}
return 0;