From e9ad121ba53230ef20674599047ed1889982d698 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 27 Apr 2014 14:50:14 +0200 Subject: Fix skiping typos Found-by: Alessandro Ghedini Signed-off-by: Michael Niedermayer --- libavcodec/flacdec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/flacdec.c') 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; } -- cgit v1.2.3