summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-04-27 14:50:14 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-04-27 14:50:14 +0200
commite9ad121ba53230ef20674599047ed1889982d698 (patch)
tree69224e76af61efd5e85d9004ad44e6551e2788ef /libavcodec
parent9abf08f79fb3227d5efe1d9a05df122be0f3006e (diff)
Fix skiping typos
Found-by: Alessandro Ghedini <alessandro@ghedini.me> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/flacdec.c4
-rw-r--r--libavcodec/vc1dec.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/flacdec.c b/libavcodec/flacdec.c
index f63a918b1b..ec3cbffbf4 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 ec3556859b..614e774972 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) ||