]> git.sesse.net Git - ffmpeg/commitdiff
Fix two "skiping" typo.
authorClément Bœsch <ubitux@gmail.com>
Tue, 25 Sep 2012 05:42:32 +0000 (07:42 +0200)
committerClément Bœsch <ubitux@gmail.com>
Tue, 25 Sep 2012 05:42:32 +0000 (07:42 +0200)
ffmpeg.c
libavformat/utils.c
tools/patcheck

index a30ffb19aad7531df2f06a116bc5e6fddd93ed38..b74c1121ccd7e962b9677409b29935d9529b1580 100644 (file)
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -821,7 +821,7 @@ static void do_video_out(AVFormatContext *s,
         return;
     } else if (nb_frames > 1) {
         if (nb_frames > dts_error_threshold * 30) {
-            av_log(NULL, AV_LOG_ERROR, "%d frame duplication too large, skiping\n", nb_frames - 1);
+            av_log(NULL, AV_LOG_ERROR, "%d frame duplication too large, skipping\n", nb_frames - 1);
             nb_frames_drop++;
             return;
         }
index 0eda2aeec656267e3d157ad683faa92046a19947..a48369fdfbd1f08ee9c5a40dd4851075fba33977 100644 (file)
@@ -646,7 +646,7 @@ int avformat_open_input(AVFormatContext **ps, const char *filename, AVInputForma
             if((ret = ff_id3v2_parse_apic(s, &id3v2_extra_meta)) < 0)
                 goto fail;
         } else
-            av_log(s, AV_LOG_DEBUG, "demuxer does not support additional id3 data, skiping\n");
+            av_log(s, AV_LOG_DEBUG, "demuxer does not support additional id3 data, skipping\n");
     }
     ff_id3v2_free_extra_meta(&id3v2_extra_meta);
 
index 80073aead978f6fc9f5ca5401eb97875cb015060..f82787be37c960fd3077cf6baa512c5ef1bb5d26 100755 (executable)
@@ -67,7 +67,7 @@ $EGREP $OPT '^\+ *(const *|)static' $*| $EGREP --color=always '[^=]= *(0|NULL)[^
 cat $TMP
 hiegrep '# *ifdef * (HAVE|CONFIG)_' 'ifdefs that should be #if' $*
 
-hiegrep '\b(awnser|cant|dont|wont|usefull|successfull|occured|teh|alot|wether|skiped|heigth|informations|colums|loosy|loosing|ouput|seperate|preceed|upto|paket|posible|unkown|inpossible|dimention|acheive|funtions|overriden|outputing|seperation|initalize|compatibilty)\b' 'common typos' $*
+hiegrep '\b(awnser|cant|dont|wont|usefull|successfull|occured|teh|alot|wether|skiped|skiping|heigth|informations|colums|loosy|loosing|ouput|seperate|preceed|upto|paket|posible|unkown|inpossible|dimention|acheive|funtions|overriden|outputing|seperation|initalize|compatibilty)\b' 'common typos' $*
 
 hiegrep 'av_log\( *NULL' 'Missing context in av_log' $*
 hiegrep '[^sn]printf' 'Please use av_log' $*