[FFmpeg-cvslog] Fix skiping typos

Michael Niedermayer git at videolan.org
Sun Apr 27 15:01:47 CEST 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Apr 27 14:50:14 2014 +0200| [e9ad121ba53230ef20674599047ed1889982d698] | committer: Michael Niedermayer

Fix skiping typos

Found-by: Alessandro Ghedini <alessandro at ghedini.me>
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e9ad121ba53230ef20674599047ed1889982d698
---

 libavcodec/flacdec.c |    4 ++--
 libavcodec/vc1dec.c  |    2 +-
 libavformat/avidec.c |    2 +-
 libavformat/flvdec.c |    2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/libavcodec/flacdec.c b/libavcodec/flacdec.c
index f63a918..ec3cbff 100644
--- a/libavcodec/flacdec.c
+++ b/libavcodec/flacdec.c
@@ -512,12 +512,12 @@ static int flac_decode_frame(AVCodecContext *avctx, void *data,
     }
 
     if (buf_size > 5 && !memcmp(buf, "\177FLAC", 5)) {
-        av_log(s->avctx, AV_LOG_DEBUG, "skiping flac header packet 1\n");
+        av_log(s->avctx, AV_LOG_DEBUG, "skipping flac header packet 1\n");
         return buf_size;
     }
 
     if (buf_size > 0 && (*buf & 0x7F) == FLAC_METADATA_TYPE_VORBIS_COMMENT) {
-        av_log(s->avctx, AV_LOG_DEBUG, "skiping vorbis comment\n");
+        av_log(s->avctx, AV_LOG_DEBUG, "skipping vorbis comment\n");
         return buf_size;
     }
 
diff --git a/libavcodec/vc1dec.c b/libavcodec/vc1dec.c
index ec35568..614e774 100644
--- a/libavcodec/vc1dec.c
+++ b/libavcodec/vc1dec.c
@@ -5997,7 +5997,7 @@ static int vc1_decode_frame(AVCodecContext *avctx, void *data,
 
     /* skip B-frames if we don't have reference frames */
     if (s->last_picture_ptr == NULL && (s->pict_type == AV_PICTURE_TYPE_B || s->droppable)) {
-        av_log(v->s.avctx, AV_LOG_DEBUG, "Skiping B frame without reference frames\n");
+        av_log(v->s.avctx, AV_LOG_DEBUG, "Skipping B frame without reference frames\n");
         goto end;
     }
     if ((avctx->skip_frame >= AVDISCARD_NONREF && s->pict_type == AV_PICTURE_TYPE_B) ||
diff --git a/libavformat/avidec.c b/libavformat/avidec.c
index f5c4f0b..d9a82d6 100644
--- a/libavformat/avidec.c
+++ b/libavformat/avidec.c
@@ -1160,7 +1160,7 @@ start_sync:
             ast = st->priv_data;
 
             if (!ast) {
-                av_log(s, AV_LOG_WARNING, "Skiping foreign stream %d packet\n", n);
+                av_log(s, AV_LOG_WARNING, "Skipping foreign stream %d packet\n", n);
                 continue;
             }
 
diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c
index 67a5e43..c0eddd3 100644
--- a/libavformat/flvdec.c
+++ b/libavformat/flvdec.c
@@ -296,7 +296,7 @@ static int parse_keyframes_index(AVFormatContext *s, AVIOContext *ioc,
     int64_t initial_pos    = avio_tell(ioc);
 
     if (vstream->nb_index_entries>0) {
-        av_log(s, AV_LOG_WARNING, "Skiping duplicate index\n");
+        av_log(s, AV_LOG_WARNING, "Skipping duplicate index\n");
         return 0;
     }
 



More information about the ffmpeg-cvslog mailing list