From fba42b33b7f25a97b4a05ac62d0b242c51be9e17 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Sat, 23 Mar 2019 11:28:15 +0800 Subject: [PATCH] lavf/flvdec: fix typo in log message fix typo in log message, it's come from cd141e71bd3 Signed-off-by: Jun Zhao --- libavformat/flvdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c index 92455c76c7..c4d5278a9b 100644 --- a/libavformat/flvdec.c +++ b/libavformat/flvdec.c @@ -386,7 +386,7 @@ static int parse_keyframes_index(AVFormatContext *s, AVIOContext *ioc, int64_t m int64_t initial_pos = avio_tell(ioc); if (flv->keyframe_count > 0) { - av_log(s, AV_LOG_DEBUG, "keyframes have been paresed\n"); + av_log(s, AV_LOG_DEBUG, "keyframes have been parsed\n"); return 0; } av_assert0(!flv->keyframe_times);