summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJun Zhao <barryjzhao@tencent.com>2019-03-23 11:28:15 +0800
committerJun Zhao <barryjzhao@tencent.com>2019-03-23 12:06:06 +0800
commitfba42b33b7f25a97b4a05ac62d0b242c51be9e17 (patch)
treee3654000e8a73e3787d2749a1a31319ad44f1644
parent305025c8aedeefd5864f4e560e11a9a41d602f60 (diff)
lavf/flvdec: fix typo in log message
fix typo in log message, it's come from cd141e71bd3 Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
-rw-r--r--libavformat/flvdec.c2
1 files changed, 1 insertions, 1 deletions
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);